Home
last modified time | relevance | path

Searched refs:exp_first (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/
H A Dpartition.pass.cpp71 …operator()(pstl::execution::unsequenced_policy, BiDirIt first, BiDirIt last, BiDirIt exp_first, Bi… in operator ()()
78 …tor()(pstl::execution::parallel_unsequenced_policy, BiDirIt first, BiDirIt last, BiDirIt exp_first, in operator ()()
85 …operator()(pstl::execution::parallel_policy, BiDirIt first, BiDirIt last, BiDirIt exp_first, BiDir…
92 …tor()(pstl::execution::parallel_unsequenced_policy, BiDirIt first, BiDirIt last, BiDirIt exp_first,
100 …operator()(Policy&& exec, BiDirIt first, BiDirIt last, BiDirIt exp_first, BiDirIt exp_last, Size, … in operator ()()
112 fill_data(exp_first, exp_last, generator); in operator ()()
113 BiDirIt exp_ret = std::stable_partition(exp_first, exp_last, unary_op); in operator ()()
117 EXPECT_TRUE(std::distance(first, actual_ret) == std::distance(exp_first, exp_ret), in operator ()()
119 …EXPECT_TRUE((is_equal<BiDirIt>(exp_first, exp_last, first)), "wrong effect from stable_partition"); in operator ()()
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.sorting/
H A Dpartial_sort_copy.pass.cpp51 RandomAccessIterator exp_first; member
55 : d_first(b1), d_last(e1), exp_first(b2), exp_last(e2) in test_one_policy()
95 … RandomAccessIterator exp = std::partial_sort_copy(first, last, exp_first, exp_last, compare); in operator ()()
98 …EXPECT_TRUE((exp - exp_first) == (res - d_first), "wrong result from partial_sort_copy with predic… in operator ()()
99 EXPECT_EQ_N(exp_first, d_first, n2, "wrong effect from partial_sort_copy with predicate"); in operator ()()
107 RandomAccessIterator exp = std::partial_sort_copy(first, last, exp_first, exp_last); in operator ()()
110 …EXPECT_TRUE((exp - exp_first) == (res - d_first), "wrong result from partial_sort_copy without pre… in operator ()()
111 … EXPECT_EQ_N(exp_first, d_first, n2, "wrong effect from partial_sort_copy without predicate"); in operator ()()
123 std::fill(exp_first, exp_last, trash); in prepare_data()
H A Dpartial_sort.pass.cpp55 …operator()(Policy&& exec, InputIterator first, InputIterator last, InputIterator exp_first, InputI… in operator ()()
68 std::copy(first, last, exp_first); in operator ()()
73 auto m2 = exp_first + p; in operator ()()
75 std::partial_sort(exp_first, m2, exp_last, compare); in operator ()()
78 EXPECT_EQ_N(exp_first, first, p, "wrong effect from partial_sort"); in operator ()()