Lines Matching defs:base
48 long strtol(const char *nptr, char **endptr, int base)
58 * If base is 0, allow 0x for hex and 0 for octal, else
59 * assume decimal; if base is already 16, allow 0x.
73 if ((base == 0 || base == 16) &&
80 base = 16;
82 if (base == 0)
83 base = c == '0' ? 8 : 10;
89 * base. An input number that is greater than this value, if
94 * [-2147483648..2147483647] and the input base is 10,
105 cutlim = cutoff % base;
106 cutoff /= base;
116 if (c >= base)
122 acc *= base;