Lines Matching refs:base
58 wchar_t ** __restrict endptr, int base, locale_t loc) in wcstoimax_l() argument
80 if ((base == 0 || base == 16) && in wcstoimax_l()
84 base = 16; in wcstoimax_l()
86 if (base == 0) in wcstoimax_l()
87 base = c == L'0' ? 8 : 10; in wcstoimax_l()
89 if (base < 2 || base > 36) in wcstoimax_l()
93 cutlim = cutoff % base; in wcstoimax_l()
94 cutoff /= base; in wcstoimax_l()
109 if ((int) c >= base) in wcstoimax_l()
115 acc *= base; in wcstoimax_l()
133 wcstoimax(const wchar_t* __restrict nptr, wchar_t** __restrict endptr, int base) in wcstoimax() argument
135 return wcstoimax_l(nptr, endptr, base, __get_current_locale()); in wcstoimax()