Home | History | Annotate | Download | only in tools

Lines Matching refs:base

66 strtoull(const char * nptr, char ** endptr, int base)
89 if ((base == 0 || base == 16) &&
96 base = 16;
98 if (base == 0)
99 base = c == '0' ? 8 : 10;
101 if (base < 2 || base > 36)
104 cutoff = ULLONG_MAX / base;
105 cutlim = ULLONG_MAX % base;
115 if (c >= base)
121 acc *= base;