Lines Matching refs:base
45 strtoll(const char *nptr, char **endptr, int base) in strtoll() argument
69 if ((base == 0 || base == 16) && in strtoll()
73 base = 16; in strtoll()
75 if (base == 0) in strtoll()
76 base = c == '0' ? 8 : 10; in strtoll()
97 cutlim = cutoff % base; in strtoll()
98 cutoff /= base; in strtoll()
101 cutlim -= base; in strtoll()
113 if (c >= base) in strtoll()
124 acc *= base; in strtoll()
134 acc *= base; in strtoll()