Home
last modified time | relevance | path

Searched refs:spanp (Results 1 – 5 of 5) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/string/
Dstrtok.c44 const char *spanp; in strtok_r() local
56 for (spanp = delim; (sc = *spanp++) != 0;) { in strtok_r()
73 spanp = delim; in strtok_r()
75 if ((sc = *spanp++) == c) { in strtok_r()
Dstrcspn.c42 const char *p, *spanp; in strcspn() local
51 spanp = s2; in strcspn()
53 if ((sc = *spanp++) == c) in strcspn()
Dstrspn.c39 const char *p = s1, *spanp; in strspn() local
47 for (spanp = s2; (sc = *spanp++) != 0;) in strspn()
Dstrsep.c49 const char *spanp; in strsep() local
57 spanp = delim; in strsep()
59 if ((sc = *spanp++) == c) { in strsep()
/bionic/libc/upstream-freebsd/lib/libc/string/
Dwcstok.c44 const wchar_t *spanp; in wcstok() local
56 for (spanp = delim; (sc = *spanp++) != L'\0';) { in wcstok()
73 spanp = delim; in wcstok()
75 if ((sc = *spanp++) == c) { in wcstok()