Lines Matching +full:10 +full:base
50 strtoull_l(const char * __restrict nptr, char ** __restrict endptr, int base, in strtoull_l() argument
75 if ((base == 0 || base == 16) && in strtoull_l()
82 base = 16; in strtoull_l()
84 if ((base == 0 || base == 2) && in strtoull_l()
89 base = 2; in strtoull_l()
91 if (base == 0) in strtoull_l()
92 base = c == '0' ? 8 : 10; in strtoull_l()
94 if (base < 2 || base > 36) in strtoull_l()
97 cutoff = ULLONG_MAX / base; in strtoull_l()
98 cutlim = ULLONG_MAX % base; in strtoull_l()
103 c -= 'A' - 10; in strtoull_l()
105 c -= 'a' - 10; in strtoull_l()
108 if (c >= base) in strtoull_l()
114 acc *= base; in strtoull_l()
131 strtoull(const char * __restrict nptr, char ** __restrict endptr, int base) in strtoull() argument
133 return strtoull_l(nptr, endptr, base, __get_locale()); in strtoull()