Lines Matching refs:s
146 register const wchar_t *s = nptr; in wcstoull_l() local
160 c = *s++; in wcstoull_l()
164 c = *s++; in wcstoull_l()
166 c = *s++; in wcstoull_l()
168 c == L'0' && (*s == L'x' || *s == L'X')) { in wcstoull_l()
169 c = s[1]; in wcstoull_l()
170 s += 2; in wcstoull_l()
177 for (acc = 0, any = 0;; c = *s++) { in wcstoull_l()
202 *endptr = (wchar_t *) (any ? s - 1 : nptr); in wcstoull_l()
207 wcstoull (const wchar_t *__restrict s, in wcstoull() argument
211 return wcstoull_l (s, ptr, base, __get_current_locale ()); in wcstoull()