Home
last modified time | relevance | path

Searched refs:__copy (Results 1 – 25 of 26) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_output.h87 __copy(basic_string_view<_CharT> __str, output_iterator<const _OutCharT&> auto __out_it) -> decltyp…
89 __out_it.__get_container()->__copy(__str);
92 __out_it.__buffer_->__copy(__str);
103 __copy(_Iterator __first, _Iterator __last, output_iterator<const _OutCharT&> auto __out_it) -> dec…
104 return __formatter::__copy(basic_string_view{__first, __last}, std::move(__out_it));
111 __copy(_Iterator __first, size_t __n, output_iterator<const _OutCharT&> auto __out_it) -> decltype(…
112 return __formatter::__copy(basic_string_view{std::to_address(__first), __n}, std::move(__out_it));
163 __out_it = __formatter::__copy( in requires()
176 __out_it = __formatter::__copy( in __fill()
222 return __formatter::__copy(__str, std::move(__out_it));
[all …]
H A Dformatter_floating_point.h543 __out_it = __formatter::__copy(__first, __digits, std::move(__out_it));
555 __out_it = __formatter::__copy(__first, *__r, std::move(__out_it));
569 …__out_it = __formatter::__copy(__result.__radix_point + 1, __result.__exponent, std::move(__out…
575 __out_it = __formatter::__copy(__result.__exponent, __result.__last, std::move(__out_it));
631 __out_it = __formatter::__copy(__first, __exponent, std::move(__out_it));
633 __out_it = __formatter::__copy(__exponent, __last, std::move(__out_it));
719 return __formatter::__copy(
722 … __formatter::__fill(__formatter::__copy(__buffer.begin(), __result.__exponent, __ctx.out()),
727 …__formatter::__copy(__buffer.begin(), __result.__last, __ctx.out()), __num_trailing_zeros, _CharT(…
H A Dformatter_integral.h230 __out_it = __formatter::__copy(__begin, __first, std::move(__out_it)); in __write_using_decimal_separators()
245 __out_it = __formatter::__copy(__begin, __first, std::move(__out_it)); in __write_using_decimal_separators()
269 __out_it = __formatter::__copy(__first, *__r, std::move(__out_it)); in __write_using_decimal_separators()
330 __out_it = __formatter::__copy(__begin, __first, std::move(__out_it)); in __format_integer()
H A Dbuffer.h225 _LIBCPP_HIDE_FROM_ABI void __copy(basic_string_view<_InCharT> __str) { in __copy() function
638 _LIBCPP_HIDE_FROM_ABI void __copy(basic_string_view<_InCharT> __str) {
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_copy.h39 struct __copy { struct
44 auto __ret = std::__copy(std::move(__first), std::move(__last), std::move(__result)); in operator() argument
52 auto __ret = std::__copy(ranges::begin(__r), ranges::end(__r), std::move(__result)); in operator() argument
58 inline constexpr auto copy = __copy{};
H A Dcopy.h39 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 pair<_InIter, _OutIter> __copy(_InIter, …
181 __result_ = std::__copy(__lfirst, __llast, std::move(__result_)).second; in operator()
210 auto __iters = std::__copy(__first, __first + __size, __local_first); in operator()
240 __copy(_InIter __first, _Sent __last, _OutIter __result) { in __copy() function
247 return std::__copy(__first, __last, __result).second; in copy()
H A Dset_symmetric_difference.h47 auto __ret1 = std::__copy(std::move(__first1), std::move(__last1), std::move(__result)); in __set_symmetric_difference()
65 auto __ret2 = std::__copy(std::move(__first2), std::move(__last2), std::move(__result)); in __set_symmetric_difference()
H A Dset_union.h46 auto __ret1 = std::__copy(std::move(__first1), std::move(__last1), std::move(__result)); in __set_union()
61 auto __ret2 = std::__copy(std::move(__first2), std::move(__last2), std::move(__result)); in __set_union()
H A Dranges_copy_n.h57 auto __ret = std::__copy(__first, __first + __n, __result); in __go()
H A Dset_difference.h47 return std::__copy(std::move(__first1), std::move(__last1), std::move(__result)); in __set_difference()
H A Dmove.h108 return std::__copy(__first, __last, __result); in operator()
H A Dpstl.h89 …using _Implementation = __pstl::__dispatch<__pstl::__copy, __pstl::__current_configuration, _RawPo… in copy()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/
H A Dcopy.h32 inline _LIBCPP_HIDE_FROM_ABI pair<_InIter, _OutIter> __copy(_InIter, _Sent, _OutIter);
57 __result_ = std::__copy<_AlgPolicy>(__lfirst, __llast, std::move(__result_)).second; in operator()
84 auto __iters = std::__copy<_AlgPolicy>(__first, __first + __size, __local_first); in operator()
102 pair<_InIter, _OutIter> inline _LIBCPP_HIDE_FROM_ABI __copy(_InIter __first, _Sent __last, _OutIter… in __copy() function
110 return std::__copy<_ClassicAlgPolicy>(__first, __last, __result).second; in copy()
H A Dset_union.h46 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_union()
61 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_union()
H A Dset_symmetric_difference.h47 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_symmetric_difference()
65 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_symmetric_difference()
H A Dset_difference.h47 return std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)); in __set_difference()
/freebsd/contrib/llvm-project/libcxx/include/__atomic/
H A Datomic_ref.h83 _Tp __copy = *__expected; in __compare_exchange() local
84 __clear_padding(__copy); in __compare_exchange()
91 _Tp __prev = __copy; in __compare_exchange()
92 …if (__atomic_compare_exchange(__ptr, std::addressof(__copy), __desired, __is_weak, __success, __fa… in __compare_exchange()
95 _Tp __curr = __copy; in __compare_exchange()
99 std::memcpy(__expected, std::addressof(__copy), sizeof(_Tp)); in __compare_exchange()
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h43 __copy(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr);
95 __copy(__from, __to, copy_options::none); in copy()
98 __copy(__from, __to, copy_options::none, &__ec); in copy()
101 __copy(__from, __to, __opt); in copy()
104 __copy(__from, __to, __opt, &__ec); in copy()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/
H A Dbackend_fwd.h227 struct __copy;
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/
H A Ddefault.h457 struct __copy<__default_backend_tag, _ExecutionPolicy> {
473 using _Copy = __dispatch<__copy, __current_configuration, _ExecutionPolicy>;
492 using _Copy = __dispatch<__copy, __current_configuration, _ExecutionPolicy>;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dany327 __copy(*__this, *__other);
361 _LIBCPP_HIDE_FROM_ABI static void __copy(any const& __this, any& __dest) {
394 __copy(*__this, *__other);
432 _LIBCPP_HIDE_FROM_ABI static void __copy(any const& __this, any& __dest) {
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp127 void __copy(const path& from, const path& to, copy_options options, error_code* ec) { in __copy() function
190 … __copy(it->path(), to / it->path().filename(), options | copy_options::__in_recursive_copy, ec); in __copy()
/freebsd/contrib/llvm-project/libcxx/include/__vector/
H A Dvector_bool.h575 std::__copy(std::move(__first), std::move(__last), end());
1009 std::__copy(std::move(__first), std::move(__last), __r);
H A Dvector.h1069 pointer __m = std::__copy(std::move(__first), __last, this->__begin_).second; in __assign_with_size()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dvector1134 pointer __m = std::__copy<_ClassicAlgPolicy>(__first, __last, this->__begin_).second;
1925 std::__copy<_ClassicAlgPolicy>(__first, __last, __make_iter(__old_size));
2291 std::__copy<_ClassicAlgPolicy>(__first, __last, __r);

12