Lines Matching refs:base
57 wchar_t ** __restrict endptr, int base, locale_t loc) in wcstoumax_l() argument
79 if ((base == 0 || base == 16) && in wcstoumax_l()
83 base = 16; in wcstoumax_l()
85 if (base == 0) in wcstoumax_l()
86 base = c == L'0' ? 8 : 10; in wcstoumax_l()
88 if (base < 2 || base > 36) in wcstoumax_l()
91 cutoff = UINTMAX_MAX / base; in wcstoumax_l()
92 cutlim = UINTMAX_MAX % base; in wcstoumax_l()
107 if ((int) c >= base) in wcstoumax_l()
113 acc *= base; in wcstoumax_l()
131 wcstoumax(const wchar_t* __restrict nptr, wchar_t** __restrict endptr, int base) in wcstoumax() argument
133 return wcstoumax_l(nptr, endptr, base, __get_current_locale()); in wcstoumax()