Lines Matching refs:s
50 const char *s; in strtoul() local
59 s = nptr; in strtoul()
61 c = *s++; in strtoul()
65 c = *s++; in strtoul()
69 c = *s++; in strtoul()
72 c == '0' && (*s == 'x' || *s == 'X') && in strtoul()
73 ((s[1] >= '0' && s[1] <= '9') || in strtoul()
74 (s[1] >= 'A' && s[1] <= 'F') || in strtoul()
75 (s[1] >= 'a' && s[1] <= 'f'))) { in strtoul()
76 c = s[1]; in strtoul()
77 s += 2; in strtoul()
86 for ( ; ; c = *s++) { in strtoul()
110 *endptr = (char *)(any ? s - 1 : nptr); in strtoul()