Lines Matching refs:base
58 unsigned int base = ibase; in strtoi() local
61 if (base > 36 || base == 1) { in strtoi()
92 if (TOLOW(*s) == 'x' && ((base | 16) == 16)) { in strtoi()
93 base = 16; in strtoi()
98 } else if (base == 0) { in strtoi()
99 base = 8; in strtoi()
101 } else if (base == 0) { in strtoi()
102 base = 10; in strtoi()
110 strtoi_type cutoff = ucutoff / base; in strtoi()
111 unsigned int cutlim = ucutoff % base; in strtoi()
113 strtoi_type cutoff = strtoi_max / base; in strtoi()
114 unsigned int cutlim = strtoi_max % base; in strtoi()
121 if (i >= base) in strtoi()
132 if (__builtin_mul_overflow(val, (strtoi_type) base, &val) || in strtoi()
140 val = val * (strtoi_type) base + (strtoi_type) i; in strtoi()