Lines Matching refs:base
43 unsigned int base = ibase; in strtoi() local
46 if (base > 36 || base == 1) { in strtoi()
77 if (TOLOWER(*s) == 'x' && ((base | 16) == 16)) { in strtoi()
78 base = 16; in strtoi()
83 } else if (base == 0) { in strtoi()
84 base = 8; in strtoi()
86 } else if (base == 0) { in strtoi()
87 base = 10; in strtoi()
95 strtoi_type cutoff = ucutoff / base; in strtoi()
96 unsigned int cutlim = ucutoff % base; in strtoi()
98 strtoi_type cutoff = strtoi_max / base; in strtoi()
99 unsigned int cutlim = strtoi_max % base; in strtoi()
106 if (i >= base) in strtoi()
117 if (__builtin_mul_overflow(val, (strtoi_type) base, &val) || in strtoi()
125 val = val * (strtoi_type) base + (strtoi_type) i; in strtoi()