Lines Matching refs:base
56 strtoumax_l(const char * __restrict nptr, char ** __restrict endptr, int base)
81 if ((base == 0 || base == 16) &&
88 base = 16;
90 if (base == 0) {
91 base = c == '0' ? 8 : 10;
94 if (base < 2 || base > 36) {
98 cutoff = UINTMAX_MAX / base;
99 cutlim = UINTMAX_MAX % base;
110 if (c >= base) {
117 acc *= base;
136 strtoumax(const char * __restrict nptr, char ** __restrict endptr, int base)
138 return strtoumax_l(nptr, endptr, base);