Lines Matching refs:base
132 int base, locale_t loc) in wcstoll_l() argument
153 if ((base == 0 || base == 16) && in wcstoll_l()
157 base = 16; in wcstoll_l()
159 if (base == 0) in wcstoll_l()
160 base = c == L'0' ? 8 : 10; in wcstoll_l()
180 cutlim = cutoff % (unsigned long long)base; in wcstoll_l()
181 cutoff /= (unsigned long long)base; in wcstoll_l()
191 if ((int) c >= base) in wcstoll_l()
197 acc *= base; in wcstoll_l()
214 int base) in wcstoll() argument
216 return wcstoll_l (s, ptr, base, __get_current_locale ()); in wcstoll()