Lines Matching defs:base
48 unsigned long long strtoull(const char *nptr, char **endptr, int base)71 if ((base == 0 || base == 16) &&78 base = 16;80 if (base == 0)81 base = c == '0' ? 8 : 10;84 cutoff = ULLONG_MAX / base;85 cutlim = ULLONG_MAX % base;95 if (c >= base)101 acc *= base;