Lines Matching refs:base
43 strtoimax(const char *nptr, char **endptr, int base) in strtoimax() argument
67 if ((base == 0 || base == 16) && in strtoimax()
71 base = 16; in strtoimax()
73 if (base == 0) in strtoimax()
74 base = c == '0' ? 8 : 10; in strtoimax()
107 switch (base) { in strtoimax()
123 cutlim = cutoff % base; in strtoimax()
124 cutoff /= base; in strtoimax()
130 cutlim -= base; in strtoimax()
142 if (c >= base) in strtoimax()
153 acc *= base; in strtoimax()
163 acc *= base; in strtoimax()