Lines Matching refs:base
130 strtoul_l (const char *__restrict nptr, char **__restrict endptr, int base, in strtoul_l() argument
150 if ((base == 0 || base == 16) && in strtoul_l()
154 base = 16; in strtoul_l()
156 if (base == 0) in strtoul_l()
157 base = c == '0' ? 8 : 10; in strtoul_l()
158 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in strtoul_l()
159 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in strtoul_l()
169 if (c >= base) in strtoul_l()
175 acc *= base; in strtoul_l()
192 int base) in strtoul() argument
194 return strtoul_l (s, ptr, base, __get_current_locale ()); in strtoul()