/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | formatter_floating_point.h | 238 __format_buffer_default(const __float_buffer<_Fp>& __buffer, _Tp __value, char* __integral) { 241 __result.__last = __formatter::__to_buffer(__integral, __buffer.end(), __value); 267 const __float_buffer<_Fp>& __buffer, _Tp __value, int __precision, char* __integral) { 271 …__result.__last = __formatter::__to_buffer(__integral, __buffer.end(), __value, chars_format::hex); 273 …__result.__last = __formatter::__to_buffer(__integral, __buffer.end(), __value, chars_format::hex,… 319 const __float_buffer<_Fp>& __buffer, _Tp __value, int __precision, char* __integral) { 321 … __formatter::__format_buffer_hexadecimal_lower_case(__buffer, __value, __precision, __integral); 329 const __float_buffer<_Fp>& __buffer, _Tp __value, int __precision, char* __integral) { 333 …__formatter::__to_buffer(__integral, __buffer.end(), __value, chars_format::scientific, __precisio… 356 const __float_buffer<_Fp>& __buffer, _Tp __value, int __precision, char* __integral) { [all …]
|
H A D | format_functions.h | 414 __format::__format_buffer<_OutIt, _CharT> __buffer{std::move(__out_it)}; in requires() 416 … std::__format_context_create(__buffer.__make_output_iterator(), __args)); in requires() 417 return std::move(__buffer).__out_it(); in requires() 492 __format::__format_to_n_buffer<_OutIt, _CharT> __buffer{std::move(__out_it), __n}; in __vformat_to_n() 494 … std::__format_context_create(__buffer.__make_output_iterator(), __args)); in __vformat_to_n() 495 return std::move(__buffer).__result(); in __vformat_to_n() 514 __format::__formatted_size_buffer<_CharT> __buffer; in __vformatted_size() local 516 … std::__format_context_create(__buffer.__make_output_iterator(), __args)); in __vformatted_size() 517 return std::move(__buffer).__result(); in __vformatted_size() 547 __format::__format_buffer<_OutIt, _CharT> __buffer{std::move(__out_it)}; in requires() [all …]
|
H A D | write_escaped.h | 75 char __buffer[8]; in __write_escaped_code_unit() local 76 to_chars_result __r = std::to_chars(std::begin(__buffer), std::end(__buffer), __value, 16); in __write_escaped_code_unit() 78 std::ranges::copy(std::begin(__buffer), __r.ptr, __out_it); in __write_escaped_code_unit()
|
H A D | formatter_tuple.h | 107 __format::__retarget_buffer<_CharT> __buffer{8 * tuple_size_v<_Tuple>}; in format() 109 __buffer.__make_output_iterator(), __ctx}; in format() 113 …return __formatter::__write_string_no_precision(basic_string_view{__buffer.__view()}, __ctx.out(),… in format()
|
H A D | range_formatter.h | 144 __format::__retarget_buffer<_CharT> __buffer{__capacity_hint}; in format() 146 __buffer.__make_output_iterator(), __ctx}; in format() 150 return __formatter::__write_string_no_precision(__buffer.__view(), __ctx.out(), __specs); in format()
|
H A D | buffer.h | 536 _LIBCPP_HIDE_FROM_ABI constexpr explicit __iterator(__retarget_buffer& __buffer) 537 : __buffer_(std::addressof(__buffer)) {}
|
/freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
H A D | to_chars_base_10.h | 113 __base_10_u64(char* __buffer, uint64_t __value) noexcept { in __base_10_u64() argument 115 return __itoa::__base_10_u32(__buffer, static_cast<uint32_t>(__value)); in __base_10_u64() 121 __buffer = __itoa::__base_10_u32(__buffer, static_cast<uint32_t>(__value / 10000000000)); in __base_10_u64() 124 return __itoa::__append10(__buffer, __value); in __base_10_u64() 141 __base_10_u128(char* __buffer, __uint128_t __value) noexcept { in __base_10_u128() argument 157 __buffer = __itoa::__append1(__buffer, static_cast<uint32_t>(__value / __itoa::__pow_10(38))); in __base_10_u128() 162 __buffer = __itoa::__append9(__buffer, static_cast<uint32_t>(__value / __itoa::__pow_10(29))); in __base_10_u128() 164 __buffer = __itoa::__append10(__buffer, static_cast<uint64_t>(__value / __itoa::__pow_10(19))); in __base_10_u128() 169 __buffer = __base_10_u64(__buffer, static_cast<uint64_t>(__value / __itoa::__pow_10(19))); in __base_10_u128() 174 __buffer = __itoa::__append9(__buffer, static_cast<uint32_t>(__value / 10000000000)); in __base_10_u128() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/ |
H A D | monotonic_buffer_resource.h | 61 _LIBCPP_HIDE_FROM_ABI monotonic_buffer_resource(void* __buffer, size_t __buffer_size) in monotonic_buffer_resource() argument 62 : monotonic_buffer_resource(__buffer, __buffer_size, get_default_resource()) {} in monotonic_buffer_resource() 70 …_LIBCPP_HIDE_FROM_ABI monotonic_buffer_resource(void* __buffer, size_t __buffer_size, memory_resou… in monotonic_buffer_resource() argument 72 __initial_.__start_ = static_cast<char*>(__buffer); in monotonic_buffer_resource() 73 if (__buffer != nullptr) { in monotonic_buffer_resource() 74 __initial_.__cur_ = static_cast<char*>(__buffer) + __buffer_size; in monotonic_buffer_resource() 75 __initial_.__end_ = static_cast<char*>(__buffer) + __buffer_size; in monotonic_buffer_resource()
|
/freebsd/contrib/llvm-project/libcxx/src/ |
H A D | ostream.cpp | 30 if (auto* __buffer = dynamic_cast<filebuf*>(__rdbuf)) in __get_ostream_file() local 31 return __buffer->__file_; in __get_ostream_file() 34 if (auto* __buffer = dynamic_cast<__stdoutbuf<char>*>(__rdbuf)) in __get_ostream_file() local 35 return __buffer->__file_; in __get_ostream_file()
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | parallel_backend_serial.h |
|
H A D | parallel_backend_tbb.h |
|
H A D | algorithm_impl.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/ |
H A D | util.h |
|
H A D | parallel_scan.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__utility/ |
H A D | small_buffer.h | 83 _Stored* __buffer = __alloc<_Stored>(); in __construct() local 85 std::construct_at(__buffer, std::forward<_Args>(__args)...); in __construct()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | print | 266 __format::__retarget_buffer<wchar_t> __buffer{__str.size()}; 267 __unicode::__transcode(__str.begin(), __str.end(), __buffer.__make_output_iterator()); 269 __buffer.push_back(L'\n'); 271 [[maybe_unused]] wstring_view __view = __buffer.__view();
|