Lines Matching refs:base
76 lwres_strtoul(const char *nptr, char **endptr, int base) {
94 if ((base == 0 || base == 16) &&
98 base = 16;
100 if (base == 0)
101 base = c == '0' ? 8 : 10;
102 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
103 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
113 if (c >= base)
119 acc *= base;