Lines Matching refs:s
134 register const wchar_t *s = nptr; in wcstoul_l() local
144 c = *s++; in wcstoul_l()
148 c = *s++; in wcstoul_l()
150 c = *s++; in wcstoul_l()
152 c == L'0' && (*s == L'x' || *s == L'X')) { in wcstoul_l()
153 c = s[1]; in wcstoul_l()
154 s += 2; in wcstoul_l()
161 for (acc = 0, any = 0;; c = *s++) { in wcstoul_l()
186 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoul_l()
191 wcstoul (const wchar_t *__restrict s, in wcstoul() argument
195 return wcstoul_l (s, ptr, base, __get_current_locale ()); in wcstoul()