Lines Matching refs:base
132 char **__restrict endptr, int base, locale_t loc) in _strtoll_l() argument
153 if ((base == 0 || base == 16) && in _strtoll_l()
157 base = 16; in _strtoll_l()
159 if (base == 0) in _strtoll_l()
160 base = c == '0' ? 8 : 10; in _strtoll_l()
180 cutlim = cutoff % (unsigned long long)base; in _strtoll_l()
181 cutoff /= (unsigned long long)base; in _strtoll_l()
191 if (c >= base) in _strtoll_l()
197 acc *= base; in _strtoll_l()
214 strtoll_l (const char *__restrict s, char **__restrict ptr, int base, in strtoll_l() argument
217 return _strtoll_l (s, ptr, base, loc); in strtoll_l()
223 int base) in strtoll() argument
225 return _strtoll_l (s, ptr, base, __get_current_locale ()); in strtoll()