Home | History | Annotate | Download | only in tools

Lines Matching refs:base

65 strtoll(const char * nptr, char ** endptr, int base)
75 * If base is 0, allow 0x for hex and 0 for octal, else
76 * assume decimal; if base is already 16, allow 0x.
90 if ((base == 0 || base == 16) &&
97 base = 16;
99 if (base == 0)
100 base = c == '0' ? 8 : 10;
102 if (base < 2 || base > 36)
108 * base. An input number that is greater than this value, if
113 * [-9223372036854775808..9223372036854775807] and the input base
125 cutlim = cutoff % base;
126 cutoff /= base;
136 if (c >= base)
142 acc *= base;