Lines Matching refs:out_first
29 …::execution::unsequenced_policy, InputIterator first, InputIterator last, OutputIterator out_first, in operator ()()
38 OutputIterator out_first, OutputIterator out_last, OutputIterator2 expected_first, in operator ()()
47 operator()(Policy&& exec, InputIterator first, InputIterator last, OutputIterator out_first, in operator ()()
52 std::fill_n(out_first, size, trash); in operator ()()
56 auto k = copy(exec, first, last, out_first); in operator ()()
59 EXPECT_EQ_N(expected_first, out_first, size, "wrong effect from copy"); in operator ()()
63 std::fill_n(out_first, size, trash); in operator ()()
65 k = copy_n(exec, first, n, out_first); in operator ()()
68 EXPECT_EQ_N(expected_first, out_first, size, "wrong effect from copy_n"); in operator ()()
81 …::execution::unsequenced_policy, InputIterator first, InputIterator last, OutputIterator out_first, in operator ()()
90 OutputIterator out_first, OutputIterator out_last, OutputIterator2 expected_first, in operator ()()
98 operator()(Policy&& exec, InputIterator first, InputIterator last, OutputIterator out_first, in operator ()()
103 std::fill_n(out_first, size, trash); in operator ()()
107 auto k = move(exec, first, last, out_first); in operator ()()
110 EXPECT_EQ_N(expected_first, out_first, size, "wrong effect from move"); in operator ()()
123 …::execution::unsequenced_policy, InputIterator first, InputIterator last, OutputIterator out_first, in operator ()()
132 OutputIterator out_first, OutputIterator out_last, OutputIterator2 expected_first, in operator ()()
140 operator()(Policy&& exec, InputIterator first, InputIterator last, OutputIterator out_first, in operator ()()
144 std::fill_n(out_first, size, trash); in operator ()()
148 auto k = move(exec, first, last, out_first); in operator ()()