Lines Matching refs:base
158 _DEFUN (_strtoul, (nptr, endptr, base),
161 int base)
180 if ((base == 0 || base == 16) &&
184 base = 16;
186 if (base == 0)
187 base = c == '0' ? 8 : 10;
188 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base;
189 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base;
197 if (c >= base)
203 acc *= base;
219 _DEFUN (strtoul, (s, ptr, base),
222 int base)
224 return _strtoul (s, ptr, base);