Lines Matching refs:base
70 isc_strtoul(const char *nptr, char **endptr, int base) {
88 if ((base == 0 || base == 16) &&
92 base = 16;
94 if (base == 0)
95 base = c == '0' ? 8 : 10;
96 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
97 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
107 if (c >= base)
113 acc *= base;