Home
last modified time | relevance | path

Searched refs:needle (Results 1 – 2 of 2) sorted by relevance

/petsc/include/
H A Dpetscstring.h398 static inline PetscErrorCode PetscStrstr(const char haystack[], const char needle[], char *tmp[]) P… in PetscStrstr() argument
402 PetscAssertPointer_Private(needle, 2); in PetscStrstr()
405 *tmp = (char *)__builtin_strstr(haystack, needle); in PetscStrstr()
407 *tmp = (char *)strstr(haystack, needle); in PetscStrstr()
/petsc/src/vec/is/sf/interface/
H A Dsf.c1008 static PetscBool InList(PetscMPIInt needle, PetscMPIInt n, const PetscMPIInt *list) in InList() argument
1012 if (needle == list[i]) return PETSC_TRUE; in InList()