HomeSort by relevance Sort by last modified time
    Searched defs:spanp (Results 1 - 8 of 8) sorted by null

  /bionic/libc/upstream-freebsd/lib/libc/string/
wcstok.c 44 const wchar_t *spanp; local
56 for (spanp = delim; (sc = *spanp++) != L'\0';) {
73 spanp = delim;
75 if ((sc = *spanp++) == c) {
  /bionic/libc/upstream-openbsd/lib/libc/string/
strcspn.c 42 const char *p, *spanp; local
51 spanp = s2;
53 if ((sc = *spanp++) == c)
strspn.c 39 const char *p = s1, *spanp; local
47 for (spanp = s2; (sc = *spanp++) != 0;)
strsep.c 49 const char *spanp; local
57 spanp = delim;
59 if ((sc = *spanp++) == c) {
strtok.c 43 char *spanp; local
56 for (spanp = (char *)delim; (sc = *spanp++) != 0;) {
73 spanp = (char *)delim;
75 if ((sc = *spanp++) == c) {
  /external/fio/lib/
strsep.c 6 const char *spanp; local
16 spanp = delim;
18 sc = *spanp++;
  /external/tcpdump/missing/
strsep.c 62 register const char *spanp; local
70 spanp = delim;
72 if ((sc = *spanp++) == c) {
  /system/core/adb/
sysdeps_win32.c 2185 char *spanp; local
    [all...]

Completed in 149 milliseconds