Lines Matching +full:10 +full:base
47 strtoq(const char *nptr, char **endptr, int base) in strtoq() argument
57 * If base is 0, allow 0x for hex and 0 for octal, else in strtoq()
58 * assume decimal; if base is already 16, allow 0x. in strtoq()
72 if ((base == 0 || base == 16) && in strtoq()
76 base = 16; in strtoq()
78 if (base == 0) in strtoq()
79 base = c == '0' ? 8 : 10; in strtoq()
84 * base. An input number that is greater than this value, if in strtoq()
89 * [-9223372036854775808..9223372036854775807] and the input base in strtoq()
90 * is 10, cutoff will be set to 922337203685477580 and cutlim to in strtoq()
99 qbase = (unsigned)base; in strtoq()
109 c -= isupper(c) ? 'A' - 10 : 'a' - 10; in strtoq()
112 if (c >= base) in strtoq()