Lines Matching defs:base
66 lwres_strtoul(const char *nptr, char **endptr, int base) {
84 if ((base == 0 || base == 16) &&
88 base = 16;
90 if (base == 0)
91 base = c == '0' ? 8 : 10;
92 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
93 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
103 if (c >= base)
109 acc *= base;