Lines Matching refs:base
57 strtoimax_l(const char * __restrict nptr, char ** __restrict endptr, int base, in strtoimax_l() argument
82 if ((base == 0 || base == 16) && in strtoimax_l()
86 base = 16; in strtoimax_l()
88 if (base == 0) in strtoimax_l()
89 base = c == '0' ? 8 : 10; in strtoimax_l()
91 if (base < 2 || base > 36) in strtoimax_l()
113 cutlim = cutoff % base; in strtoimax_l()
114 cutoff /= base; in strtoimax_l()
124 if (c >= base) in strtoimax_l()
130 acc *= base; in strtoimax_l()
148 strtoimax(const char* __restrict nptr, char** __restrict endptr, int base) in strtoimax() argument
150 return strtoimax_l(nptr, endptr, base, __get_current_locale()); in strtoimax()