Lines Matching refs:base
131 int base, locale_t loc) in wcstol_l() argument
152 if ((base == 0 || base == 16) && in wcstol_l()
156 base = 16; in wcstol_l()
158 if (base == 0) in wcstol_l()
159 base = c == L'0' ? 8 : 10; in wcstol_l()
179 cutlim = cutoff % (unsigned long)base; in wcstol_l()
180 cutoff /= (unsigned long)base; in wcstol_l()
190 if ((int) c >= base) in wcstol_l()
196 acc *= base; in wcstol_l()
214 int base) in wcstol() argument
216 return wcstol_l (s, ptr, base, __get_current_locale ()); in wcstol()