Searched refs:__out_first (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/libcxx/include/__algorithm/
H A Dranges_sample.h45 _OutIter __out_first, iter_difference_t<_Iter> __n, _Gen&& __gen) const {
48 std::move(__first), std::move(__last), std::move(__out_first), __n, __adapted_gen);
56 _OutIter operator()(_Range&& __range, _OutIter __out_first, range_difference_t<_Range> __n, _Gen&& __gen) const { argument
58 std::move(__out_first), __n, std::forward<_Gen>(__gen));
44 operator ()(_Iter __first, _Sent __last, _OutIter __out_first, iter_difference_t<_Iter> __n, _Gen&& __gen) const argument
H A Dcopy_move_common.h105 __unwrap_and_dispatch(_InIter __first, _Sent __last, _OutIter __out_first) { argument
107 auto __result = _Algorithm()(std::move(__range.first), std::move(__range.second), std::__unwrap_iter(__out_first));
109 std::__rewrap_iter(std::move(__out_first), std::move(__result.second)));
118 __unwrap_and_dispatch(_InIter __first, _Sent __last, _OutIter __out_first) { argument
119 return _Algorithm()(std::move(__first), std::move(__last), std::move(__out_first));
139 __dispatch_copy_or_move(_InIter __first, _Sent __last, _OutIter __out_first) { argument
143 return std::__unwrap_and_dispatch<_NaiveAlgorithm>(std::move(__first), std::move(__last), std::move(__out_first));
152 return std::__unwrap_and_dispatch<_NaiveAlgorithm>(std::move(__first), std::move(__last), std::move(__out_first));
158 return std::__unwrap_and_dispatch<_Algorithm>(std::move(__first), std::move(__last), std::move(__out_first));

Completed in 162 milliseconds