Searched refs:d_first (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/pstl/test/std/algorithms/alg.sorting/ |
| H A D | partial_sort_copy.pass.cpp | 49 RandomAccessIterator d_first; member 55 : d_first(b1), d_last(e1), exp_first(b2), exp_last(e2) in test_one_policy() 96 … RandomAccessIterator res = std::partial_sort_copy(exec, first, last, d_first, d_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 ()() 108 RandomAccessIterator res = std::partial_sort_copy(exec, first, last, d_first, d_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 ()() 124 std::fill(d_first, d_last, trash); in prepare_data()
|
| /llvm-project-15.0.7/pstl/test/std/numerics/numeric.ops/ |
| H A D | adjacent_difference.pass.cpp | 61 compute_and_check(Iterator1 first, Iterator1 last, Iterator2 d_first, T, Function f) in compute_and_check() argument 70 if (!compare(temp, *d_first)) in compute_and_check() 75 ++d_first; in compute_and_check() 76 for (; second != last; ++first, ++second, ++d_first) in compute_and_check() 79 if (!compare(temp, *d_first)) in compute_and_check()
|
| /llvm-project-15.0.7/pstl/test/std/algorithms/alg.modifying.operations/alg.partitions/ |
| H A D | partition.pass.cpp | 53 is_equal(Iterator first, Iterator last, Iterator d_first) in is_equal() argument 55 return std::equal(first, last, d_first); in is_equal()
|
| /llvm-project-15.0.7/llvm/include/llvm/ADT/ |
| H A D | STLExtras.h | 1723 OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F) { 1724 return std::transform(adl_begin(Range), adl_end(Range), d_first, F);
|