Lines Matching defs:base
61 isc_strtoul(const char *nptr, char **endptr, int base) {
79 if ((base == 0 || base == 16) &&
83 base = 16;
85 if (base == 0)
86 base = c == '0' ? 8 : 10;
87 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
88 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
98 if (c >= base)
104 acc *= base;