Lines Matching refs:base
131 char **__restrict endptr, int base, locale_t loc) in _strtoll_l() argument
152 if ((base == 0 || base == 16) && in _strtoll_l()
156 base = 16; in _strtoll_l()
158 if (base == 0) in _strtoll_l()
159 base = c == '0' ? 8 : 10; in _strtoll_l()
179 cutlim = cutoff % (unsigned long long)base; in _strtoll_l()
180 cutoff /= (unsigned long long)base; in _strtoll_l()
190 if (c >= base) in _strtoll_l()
196 acc *= base; in _strtoll_l()
213 strtoll_l (const char *__restrict s, char **__restrict ptr, int base, in strtoll_l() argument
216 return _strtoll_l (s, ptr, base, loc); in strtoll_l()
222 int base) in strtoll() argument
224 return _strtoll_l (s, ptr, base, __get_current_locale ()); in strtoll()