Lines Matching refs:base
128 char **__restrict endptr, int base, locale_t loc) in _strtoull_l() argument
147 if ((base == 0 || base == 16) && in _strtoull_l()
151 base = 16; in _strtoull_l()
153 if (base == 0) in _strtoull_l()
154 base = c == '0' ? 8 : 10; in _strtoull_l()
155 cutoff = (unsigned long long)ULLONG_MAX / (unsigned long long)base; in _strtoull_l()
156 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in _strtoull_l()
166 if (c >= base) in _strtoull_l()
172 acc *= base; in _strtoull_l()
189 strtoull_l (const char *__restrict s, char **__restrict ptr, int base, in strtoull_l() argument
192 return _strtoull_l (s, ptr, base, loc); in strtoull_l()
198 int base) in strtoull() argument
200 return _strtoull_l (s, ptr, base, __get_current_locale ()); in strtoull()