Lines Matching refs:s
48 unsigned char *s = (unsigned char*) accept; in STRSPN() local
53 p[*s++] = 1; in STRSPN()
54 while (*s); in STRSPN()
56 s = (unsigned char*) str; in STRSPN()
57 if (!p[s[0]]) return 0; in STRSPN()
58 if (!p[s[1]]) return 1; in STRSPN()
59 if (!p[s[2]]) return 2; in STRSPN()
60 if (!p[s[3]]) return 3; in STRSPN()
62 s = (unsigned char *) PTR_ALIGN_DOWN (s, 4); in STRSPN()
66 s += 4; in STRSPN()
67 c0 = p[s[0]]; in STRSPN()
68 c1 = p[s[1]]; in STRSPN()
69 c2 = p[s[2]]; in STRSPN()
70 c3 = p[s[3]]; in STRSPN()
73 size_t count = s - (unsigned char *) str; in STRSPN()