Lines Matching refs:base
127 char **__restrict endptr, int base, locale_t loc) in _strtoull_l() argument
146 if ((base == 0 || base == 16) && in _strtoull_l()
150 base = 16; in _strtoull_l()
152 if (base == 0) in _strtoull_l()
153 base = c == '0' ? 8 : 10; in _strtoull_l()
154 cutoff = (unsigned long long)ULLONG_MAX / (unsigned long long)base; in _strtoull_l()
155 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in _strtoull_l()
165 if (c >= base) in _strtoull_l()
171 acc *= base; in _strtoull_l()
188 strtoull_l (const char *__restrict s, char **__restrict ptr, int base, in strtoull_l() argument
191 return _strtoull_l (s, ptr, base, loc); in strtoull_l()
197 int base) in strtoull() argument
199 return _strtoull_l (s, ptr, base, __get_current_locale ()); in strtoull()