Lines Matching refs:base
56 strtoul_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 = ULONG_MAX / base;
99 cutlim = ULONG_MAX % base;
110 if (c >= base) {
117 acc *= base;
136 strtoul(const char * __restrict nptr, char ** __restrict endptr, int base)
138 return strtoul_l(nptr, endptr, base);