Lines Matching refs:__value
117 integral auto __value,
120 using _Tp = decltype(__value);
124 if (__value < numeric_limits<_CharT>::min() || __value > numeric_limits<_CharT>::max())
128 if (__value > static_cast<make_unsigned_t<_CharT>>(numeric_limits<_CharT>::max()))
132 if (__value < 0 || static_cast<make_unsigned_t<_Tp>>(__value) > numeric_limits<_CharT>::max())
137 const auto __c = static_cast<_CharT>(__value);
147 _LIBCPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, int __base) { in __to_buffer() argument
150 to_chars_result __r = _VSTD::to_chars(__first, __last, __value, __base); in __to_buffer()
202 _Tp __value,
215 char* __last = __formatter::__to_buffer(__first, __end, __value, __base);
262 …_Tp __value, auto& __ctx, __format_spec::__parsed_specifications<_CharT> __specs, bool __negative …
266 array<char, __formatter::__buffer_size<decltype(__value), 2>()> __array;
267 …return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array…
270 array<char, __formatter::__buffer_size<decltype(__value), 2>()> __array;
271 …return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array…
275 array<char, __formatter::__buffer_size<decltype(__value), 8>()> __array;
277 …__value, __ctx, __specs, __negative, __array.begin(), __array.end(), __value != 0 ? "0" : nullptr,…
281 array<char, __formatter::__buffer_size<decltype(__value), 10>()> __array;
283 __value, __ctx, __specs, __negative, __array.begin(), __array.end(), nullptr, 10);
286 array<char, __formatter::__buffer_size<decltype(__value), 16>()> __array;
287 …return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array…
290 array<char, __formatter::__buffer_size<decltype(__value), 16>()> __array;
291 …return __formatter::__format_integer(__value, __ctx, __specs, __negative, __array.begin(), __array…
301 __format_integer(_Tp __value, auto& __ctx, __format_spec::__parsed_specifications<_CharT> __specs)
309 auto __r = std::__to_unsigned_like(__value);
310 bool __negative = __value < 0;
340 __format_bool(bool __value, auto& __ctx, __format_spec::__parsed_specifications<_CharT> __specs)
345 basic_string<_CharT> __str = __value ? __np.truename() : __np.falsename();
350 …__value ? __formatter::__bool_strings<_CharT>::__true : __formatter::__bool_strings<_CharT>::__fal…