Lines Matching refs:s
44 unsigned char *s = (unsigned char*) reject; in STRCSPN() local
47 p[tmp = *s++] = 1; in STRCSPN()
50 s = (unsigned char*) str; in STRCSPN()
51 if (p[s[0]]) return 0; in STRCSPN()
52 if (p[s[1]]) return 1; in STRCSPN()
53 if (p[s[2]]) return 2; in STRCSPN()
54 if (p[s[3]]) return 3; in STRCSPN()
56 s = (unsigned char *) PTR_ALIGN_DOWN (s, 4); in STRCSPN()
61 s += 4; in STRCSPN()
62 c0 = p[s[0]]; in STRCSPN()
63 c1 = p[s[1]]; in STRCSPN()
64 c2 = p[s[2]]; in STRCSPN()
65 c3 = p[s[3]]; in STRCSPN()
69 size_t count = s - (unsigned char *) str; in STRCSPN()