/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | formatter_output.h | 104 __copy(basic_string_view<_CharT> __str, output_iterator<const _OutCharT&> auto __out_it) -> decltyp… 106 __out_it.__get_container()->__copy(__str); 109 __out_it.__buffer_->__copy(__str); 120 __copy(_Iterator __first, _Iterator __last, output_iterator<const _OutCharT&> auto __out_it) -> dec… 121 return __formatter::__copy(basic_string_view{__first, __last}, std::move(__out_it)); 128 __copy(_Iterator __first, size_t __n, output_iterator<const _OutCharT&> auto __out_it) -> decltype(… 129 return __formatter::__copy(basic_string_view{std::to_address(__first), __n}, std::move(__out_it)); 180 __out_it = __formatter::__copy( in requires() 193 __out_it = __formatter::__copy( in __fill() 239 return __formatter::__copy(__str, std::move(__out_it)); [all …]
|
H A D | formatter_floating_point.h | 542 __out_it = __formatter::__copy(__first, __digits, std::move(__out_it)); 554 __out_it = __formatter::__copy(__first, *__r, std::move(__out_it)); 568 …__out_it = __formatter::__copy(__result.__radix_point + 1, __result.__exponent, std::move(__out… 574 __out_it = __formatter::__copy(__result.__exponent, __result.__last, std::move(__out_it)); 630 __out_it = __formatter::__copy(__first, __exponent, std::move(__out_it)); 632 __out_it = __formatter::__copy(__exponent, __last, std::move(__out_it)); 718 return __formatter::__copy( 721 … __formatter::__fill(__formatter::__copy(__buffer.begin(), __result.__exponent, __ctx.out()), 726 …__formatter::__copy(__buffer.begin(), __result.__last, __ctx.out()), __num_trailing_zeros, _CharT(…
|
H A D | formatter_integral.h | 229 __out_it = __formatter::__copy(__begin, __first, std::move(__out_it)); in __write_using_decimal_separators() 244 __out_it = __formatter::__copy(__begin, __first, std::move(__out_it)); in __write_using_decimal_separators() 268 __out_it = __formatter::__copy(__first, *__r, std::move(__out_it)); in __write_using_decimal_separators() 329 __out_it = __formatter::__copy(__begin, __first, std::move(__out_it)); in __format_integer()
|
H A D | buffer.h | 95 _LIBCPP_HIDE_FROM_ABI void __copy(basic_string_view<_InCharT> __str) { in __copy() function 132 /// Like @ref __copy it may need to do type conversion. 585 _LIBCPP_HIDE_FROM_ABI void __copy(basic_string_view<_InCharT> __str) {
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | ranges_copy.h | 40 namespace __copy { 46 auto __ret = std::__copy<_RangeAlgPolicy>(std::move(__first), std::move(__last), std::move(__result)); 54 auto __ret = std::__copy<_RangeAlgPolicy>(ranges::begin(__r), ranges::end(__r), std::move(__result)); 58 } // namespace __copy 61 inline constexpr auto copy = __copy::__fn{};
|
H A D | copy.h | 32 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_InIter, _OutIter> __copy(_InIter, … 59 __result_ = std::__copy<_AlgPolicy>(__lfirst, __llast, std::move(__result_)).second; in operator() 88 auto __iters = std::__copy<_AlgPolicy>(__first, __first + __size, __local_first); in operator() 108 __copy(_InIter __first, _Sent __last, _OutIter __result) { in __copy() function 116 return std::__copy<_ClassicAlgPolicy>(__first, __last, __result).second; in copy()
|
H A D | set_symmetric_difference.h | 48 auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)); in __set_symmetric_difference() 66 auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)); in __set_symmetric_difference()
|
H A D | set_union.h | 47 auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)); in __set_union() 62 auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)); in __set_union()
|
H A D | ranges_copy_n.h | 57 auto __ret = std::__copy<_RangeAlgPolicy>(__first, __first + __n, __result);
|
H A D | set_difference.h | 49 return std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result));
|
H A D | pstl.h | 89 …using _Implementation = __pstl::__dispatch<__pstl::__copy, __pstl::__current_configuration, _RawPo… in copy()
|
/freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
H A D | atomic_ref.h | 81 _Tp __copy = *__expected; in __compare_exchange() local 82 __clear_padding(__copy); in __compare_exchange() 89 _Tp __prev = __copy; in __compare_exchange() 90 …if (__atomic_compare_exchange(__ptr, std::addressof(__copy), __desired, __is_weak, __success, __fa… in __compare_exchange() 93 _Tp __curr = __copy; in __compare_exchange() 97 std::memcpy(__expected, std::addressof(__copy), sizeof(_Tp)); in __compare_exchange()
|
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | operations.h | 43 __copy(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr); 92 __copy(__from, __to, copy_options::none); in copy() 95 __copy(__from, __to, copy_options::none, &__ec); in copy() 98 __copy(__from, __to, __opt); in copy() 101 __copy(__from, __to, __opt, &__ec); in copy()
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/ |
H A D | backend_fwd.h | 223 struct __copy;
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/ |
H A D | default.h | 455 struct __copy<__default_backend_tag, _ExecutionPolicy> { 471 using _Copy = __dispatch<__copy, __current_configuration, _ExecutionPolicy>; 490 using _Copy = __dispatch<__copy, __current_configuration, _ExecutionPolicy>;
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | any | 324 __copy(*__this, *__other); 358 _LIBCPP_HIDE_FROM_ABI static void __copy(any const& __this, any& __dest) { 391 __copy(*__this, *__other); 429 _LIBCPP_HIDE_FROM_ABI static void __copy(any const& __this, any& __dest) {
|
H A D | vector | 1383 pointer __m = std::__copy<_ClassicAlgPolicy>(__first, __last, this->__begin_).second; 2364 std::__copy<_ClassicAlgPolicy>(__first, __last, __make_iter(__old_size)); 2790 std::__copy<_ClassicAlgPolicy>(__first, __last, __r);
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | operations.cpp | 104 void __copy(const path& from, const path& to, copy_options options, error_code* ec) { in __copy() function 167 … __copy(it->path(), to / it->path().filename(), options | copy_options::__in_recursive_copy, ec); in __copy()
|