Lines Matching refs:base
123 char **__restrict endptr, int base, locale_t loc) in _strtol_l() argument
131 if (base < 0 || base == 1 || base > 36) { in _strtol_l()
151 if ((base == 0 || base == 16) && in _strtol_l()
157 base = 16; in _strtol_l()
159 if (base == 0) in _strtol_l()
160 base = c == '0' ? 8 : 10; in _strtol_l()
180 cutlim = cutoff % (unsigned long)base; in _strtol_l()
181 cutoff /= (unsigned long)base; in _strtol_l()
191 if (c >= base) in _strtol_l()
197 acc *= base; in _strtol_l()
214 strtol_l (const char *__restrict s, char **__restrict ptr, int base, in strtol_l() argument
217 return _strtol_l (s, ptr, base, loc); in strtol_l()
223 int base) in strtol() argument
225 return _strtol_l (s, ptr, base, __get_current_locale ()); in strtol()