Lines Matching refs:base
51 strtoul(const char * __restrict nptr, char ** __restrict endptr, int base)74 if ((base == 0 || base == 16) &&81 base = 16;83 if (base == 0)84 base = c == '0' ? 8 : 10;86 if (base < 2 || base > 36)89 cutoff = ULONG_MAX / base;90 cutlim = ULONG_MAX % base;100 if (c >= base)106 acc *= base;