Lines Matching refs:base
144 int base, locale_t loc) in wcstoull_l() argument
152 if(base < 0 || base == 1 || base > 36) { in wcstoull_l()
167 if ((base == 0 || base == 16) && in wcstoull_l()
171 base = 16; in wcstoull_l()
173 if (base == 0) in wcstoull_l()
174 base = c == L'0' ? 8 : 10; in wcstoull_l()
175 cutoff = (unsigned long long)ULLONG_MAX / (unsigned long long)base; in wcstoull_l()
176 cutlim = (unsigned long long)ULLONG_MAX % (unsigned long long)base; in wcstoull_l()
186 if ((int) c >= base) in wcstoull_l()
192 acc *= base; in wcstoull_l()
209 int base) in wcstoull() argument
211 return wcstoull_l (s, ptr, base, __get_current_locale ()); in wcstoull()