Lines Matching refs:base
56 strtoimax_l(const char * __restrict nptr, char ** __restrict endptr, int base)
67 * If base is 0, allow 0x for hex and 0 for octal, else
68 * assume decimal; if base is already 16, allow 0x.
83 if ((base == 0 || base == 16) &&
90 base = 16;
92 if (base == 0) {
93 base = c == '0' ? 8 : 10;
96 if (base < 2 || base > 36) {
103 * base. An input number that is greater than this value, if
108 * [-9223372036854775808..9223372036854775807] and the input base
120 cutlim = cutoff % base;
121 cutoff /= base;
132 if (c >= base) {
139 acc *= base;
158 strtoimax(const char * __restrict nptr, char ** __restrict endptr, int base)
160 return strtoimax_l(nptr, endptr, base);