Lines Matching refs:base
224 int base, int group, locale_t loc) in INTERNAL()
282 if (base < 0 || base == 1 || base > 36) in INTERNAL()
309 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X')) in INTERNAL()
312 base = 16; in INTERNAL()
314 else if (base == 0) in INTERNAL()
315 base = 8; in INTERNAL()
317 else if (base == 0) in INTERNAL()
318 base = 10; in INTERNAL()
324 if (base != 10) in INTERNAL()
357 || (int) (TOUPPER (c) - L_('A') + 10) >= base)) in INTERNAL()
372 cutoff = cutoff_tab[base - 2]; in INTERNAL()
373 cutlim = cutlim_tab[base - 2]; in INTERNAL()
381 unsigned long int jmax = jmax_tab[base - 2]; in INTERNAL()
415 if ((int) c >= base) in INTERNAL()
425 j = j * (unsigned long int) base + c; in INTERNAL()
463 if ((int) c >= base) in INTERNAL()
471 i *= (unsigned LONG int) base; in INTERNAL()
535 int base);
544 int base, locale_t loc) in __strtol_l() argument
546 return INTERNAL (__strtol_l) (nptr, endptr, base, 0, loc); in __strtol_l()