Home | History | Annotate | Download | only in stdlib

Lines Matching refs:base

44 strtol(const char *nptr, char **endptr, int base)
53 * If base is 0, allow 0x for hex and 0 for octal, else
54 * assume decimal; if base is already 16, allow 0x.
68 if ((base == 0 || base == 16) &&
72 base = 16;
74 if (base == 0)
75 base = c == '0' ? 8 : 10;
80 * base. An input number that is greater than this value, if
85 * [-2147483648..2147483647] and the input base is 10,
95 cutlim = cutoff % base;
96 cutoff /= base;
99 cutlim -= base;
111 if (c >= base)
122 acc *= base;
132 acc *= base;