Lines Matching refs:base
58 char ** __restrict endptr, int base, locale_t loc) in strtoumax_l() argument
80 if ((base == 0 || base == 16) && in strtoumax_l()
84 base = 16; in strtoumax_l()
86 if (base == 0) in strtoumax_l()
87 base = c == '0' ? 8 : 10; in strtoumax_l()
89 if (base < 2 || base > 36) in strtoumax_l()
92 cutoff = UINTMAX_MAX / base; in strtoumax_l()
93 cutlim = UINTMAX_MAX % base; in strtoumax_l()
103 if (c >= base) in strtoumax_l()
109 acc *= base; in strtoumax_l()
128 strtoumax(const char* __restrict nptr, char** __restrict endptr, int base) in strtoumax() argument
130 return strtoumax_l(nptr, endptr, base, __get_current_locale()); in strtoumax()