Searched refs:needle (Results 1 – 2 of 2) sorted by relevance
398 static inline PetscErrorCode PetscStrstr(const char haystack[], const char needle[], char *tmp[]) P… in PetscStrstr() argument402 PetscAssertPointer_Private(needle, 2); in PetscStrstr()405 *tmp = (char *)__builtin_strstr(haystack, needle); in PetscStrstr()407 *tmp = (char *)strstr(haystack, needle); in PetscStrstr()
1008 static PetscBool InList(PetscMPIInt needle, PetscMPIInt n, const PetscMPIInt *list) in InList() argument1012 if (needle == list[i]) return PETSC_TRUE; in InList()