Lines Matching refs:base
46 sm_strtoll(nptr, endptr, base)
49 register int base; variable
79 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == '0' ? 8 : 10;
109 cutlim = cutoff % base;
110 cutoff /= base;
115 cutlim -= base;
128 if (c >= base)
143 acc *= base;
158 acc *= base;
187 sm_strtoull(nptr, endptr, base) in sm_strtoull() argument
190 register int base;
214 if ((base == 0 || base == 16) &&
219 base = 16;
221 if (base == 0)
222 base = c == '0' ? 8 : 10;
224 cutoff = ULLONG_MAX / (ULONGLONG_T)base;
225 cutlim = ULLONG_MAX % (ULONGLONG_T)base;
234 if (c >= base)
247 acc *= (ULONGLONG_T)base;