Searched refs:__copy_impl (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/libcxx/include/__algorithm/ |
| H A D | copy.h | 32 pair<_InIter, _OutIter> __copy_impl(_InIter __first, _Sent __last, _OutIter __result) { in __copy_impl() function 46 pair<_InValueT*, _OutValueT*> __copy_impl(_InValueT* __first, _InValueT* __last, _OutValueT* __resu… in __copy_impl() function 53 return std::__copy_impl<_InValueT*, _InValueT*, _OutValueT*>(__first, __last, __result); in __copy_impl() 69 __copy_impl(_InIter __first, _InIter __last, _OutIter __result) { in __copy_impl() function 74 std::__copy_impl(__last_base, __first_base, __result_first); in __copy_impl() 84 return std::__copy_impl(std::move(__first), std::move(__last), std::move(__result)); in __copy() 94 …auto __ret = std::__copy_impl(std::move(__range.first), std::move(__range.second), std::__unwrap… in __copy()
|
| H A D | set_symmetric_difference.h | 43 auto __ret1 = std::__copy_impl(std::move(__first1), std::move(__last1), std::move(__result)); in __set_symmetric_difference() 61 auto __ret2 = std::__copy_impl(std::move(__first2), std::move(__last2), std::move(__result)); in __set_symmetric_difference()
|
| H A D | set_union.h | 42 auto __ret1 = std::__copy_impl(std::move(__first1), std::move(__last1), std::move(__result)); in __set_union() 57 auto __ret2 = std::__copy_impl(std::move(__first2), std::move(__last2), std::move(__result)); in __set_union()
|