Lines Matching defs:__base
97 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type);
101 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, true_type) {
108 return std::__to_chars_integral(__first, __last, __x, __base, false_type());
250 _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI int __to_chars_integral_width(_Tp __value, unsigned __base) {
253 unsigned __base_2 = __base * __base;
254 unsigned __base_3 = __base_2 * __base;
259 if (__value < __base)
277 __to_chars_integral(char* __first, char* __last, _Tp __value, int __base, false_type) {
278 if (__base == 10) [[likely]]
281 switch (__base) {
291 int __n = std::__to_chars_integral_width(__value, __base);
298 unsigned __c = __value % __base;
299 __value /= __base;
315 to_chars(char* __first, char* __last, _Tp __value, int __base) {
316 _LIBCPP_ASSERT_UNCATEGORIZED(2 <= __base && __base <= 36, "base not in [2, 36]");
319 return std::__to_chars_integral(__first, __last, static_cast<_Type>(__value), __base, is_signed<_Tp>());