Lines Matching refs:base
132 int base, locale_t loc) in wcstoul_l() argument
151 if ((base == 0 || base == 16) && in wcstoul_l()
155 base = 16; in wcstoul_l()
157 if (base == 0) in wcstoul_l()
158 base = c == L'0' ? 8 : 10; in wcstoul_l()
159 cutoff = (unsigned long)ULONG_MAX / (unsigned long)base; in wcstoul_l()
160 cutlim = (unsigned long)ULONG_MAX % (unsigned long)base; in wcstoul_l()
170 if ((int) c >= base) in wcstoul_l()
176 acc *= base; in wcstoul_l()
193 int base) in wcstoul() argument
195 return wcstoul_l (s, ptr, base, __get_current_locale ()); in wcstoul()