Home
last modified time | relevance | path

Searched refs:__buffer (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__format/
H A Dformatter_floating_point.h387 __buffer.__remove_trailing_zeros();
448 __float_buffer<_Fp>& __buffer,
461 __buffer, __value, __has_precision ? __buffer.__precision() : -1, __first);
465 __buffer, __value, __has_precision ? __buffer.__precision() : -1, __first);
475 return __formatter::__format_buffer_fixed(__buffer, __value, __buffer.__precision(), __first);
478 …return __formatter::__format_buffer_general_lower_case(__buffer, __value, __buffer.__precision(), …
493 const __float_buffer<_Fp>& __buffer,
530 *__out_it++ = *__buffer.begin();
533 *__out_it++ = *__buffer.begin();
579 char __buffer[4];
[all …]
/llvm-project-15.0.7/libcxx/include/__charconv/
H A Dto_chars_base_10.h110 _LIBCPP_HIDE_FROM_ABI inline char* __base_10_u64(char* __buffer, uint64_t __value) noexcept { in __base_10_u64() argument
112 return __itoa::__base_10_u32(__buffer, static_cast<uint32_t>(__value)); in __base_10_u64()
118 __buffer = __itoa::__base_10_u32(__buffer, static_cast<uint32_t>(__value / 10000000000)); in __base_10_u64()
121 return __itoa::__append10(__buffer, __value); in __base_10_u64()
153 __buffer = __itoa::__append1(__buffer, static_cast<uint32_t>(__value / __itoa::__pow_10(38))); in __base_10_u128()
158 __buffer = __itoa::__append9(__buffer, static_cast<uint32_t>(__value / __itoa::__pow_10(29))); in __base_10_u128()
160 __buffer = __itoa::__append10(__buffer, static_cast<uint64_t>(__value / __itoa::__pow_10(19))); in __base_10_u128()
166 __buffer = __base_10_u64(__buffer, static_cast<uint64_t>(__value / __itoa::__pow_10(19))); in __base_10_u128()
171 __buffer = __itoa::__append9(__buffer, static_cast<uint32_t>(__value / 10000000000)); in __base_10_u128()
172 __buffer = __itoa::__append10(__buffer, static_cast<uint64_t>(__value % 10000000000)); in __base_10_u128()
[all …]
/llvm-project-15.0.7/pstl/include/pstl/internal/omp/
H A Dutil.h55 class __buffer
60 __buffer(const __buffer&) = delete;
62 operator=(const __buffer&) = delete;
65__buffer(std::size_t __n) : __allocator_(), __ptr_(__allocator_.allocate(__n)), __buf_size_(__n) {} in __buffer() function
74 ~__buffer() { __allocator_.deallocate(__ptr_, __buf_size_); } in ~__buffer()
H A Dparallel_scan.h81 __buffer<_Tp> __buf(__m + 1); in __parallel_strict_scan_body()
/llvm-project-15.0.7/pstl/include/pstl/internal/
H A Dparallel_backend_serial.h29 class __buffer
34 __buffer(const __buffer&) = delete;
36 operator=(const __buffer&) = delete;
39__buffer(std::size_t __n) : __allocator_(), __ptr_(__allocator_.allocate(__n)), __buf_size_(__n) {} in __buffer() function
47 ~__buffer() { __allocator_.deallocate(__ptr_, __buf_size_); } in ~__buffer()
H A Dparallel_backend_tbb.h46 class __buffer
51 __buffer(const __buffer&) = delete;
53 operator=(const __buffer&) = delete;
57 __buffer(std::size_t n) : _M_allocator(), _M_ptr(_M_allocator.allocate(n)), _M_buf_size(n) {} in __buffer() function
67 ~__buffer() { _M_allocator.deallocate(_M_ptr, _M_buf_size); } in ~__buffer()
370 __buffer<_Tp> __buf(__m + 1); in __parallel_strict_scan()
1174 __buffer<_ValueType> __buf(__n);
H A Dalgorithm_impl.h1132 __par_backend::__buffer<bool> __mask_buf(__n); in __pattern_copy_if()
1245 __par_backend::__buffer<bool> __mask_buf(__n); in __remove_elements()
1282 __par_backend::__buffer<_Tp> __buf(__n); in __remove_elements()
1414 __par_backend::__buffer<bool> __mask_buf(__n); in __pattern_unique_copy()
1655 __par_backend::__buffer<_Tp> __buf(__n - __m); in __pattern_rotate()
1680 __par_backend::__buffer<_Tp> __buf(__m); in __pattern_rotate()
2148 __par_backend::__buffer<bool> __mask_buf(__n); in __pattern_partition_copy()
2326 __par_backend::__buffer<_T1> __buf(__n1); in __pattern_partial_sort_copy()
2791 __par_backend::__buffer<_Tp> __buf(__n); in __pattern_inplace_merge()
2927 auto __buffer = __buf.get(); in __parallel_set_op()
[all …]
/llvm-project-15.0.7/libcxx/include/
H A Dformat541 __format::__format_buffer<_OutIt, _CharT> __buffer{_VSTD::move(__out_it)};
544 _VSTD::__format_context_create(__buffer.make_output_iterator(),
546 return _VSTD::move(__buffer).out();
620 return _VSTD::move(__buffer).result();
640 __format::__formatted_size_buffer<_CharT> __buffer;
643 return _VSTD::move(__buffer).result();
676 _VSTD::__format_context_create(__buffer.make_output_iterator(),
678 return _VSTD::move(__buffer).out();
757 return _VSTD::move(__buffer).result();
780 __format::__formatted_size_buffer<_CharT> __buffer;
[all …]
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dsjlj-eh.ll31 ; +08 uint32_t __buffer[4]; -56(%ebp)
79 ; +12 uint32_t __buffer[4]; -300(%rbp)
/llvm-project-15.0.7/libcxx/include/experimental/
H A Dsimd1439 simd(const _Up* __buffer, _Flags) {
1442 (*this)[__i] = static_cast<_Tp>(__buffer[__i]);
1450 copy_from(const _Up* __buffer, _Flags) {
1451 *this = simd(__buffer, _Flags());
1458 copy_to(_Up* __buffer, _Flags) const {
1461 __buffer[__i] = static_cast<_Up>((*this)[__i]);