/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/include/boost/range/algorithm/ |
D | partial_sort.hpp | 30 inline RandomAccessRange& partial_sort(RandomAccessRange& rng, in partial_sort() function 34 std::partial_sort(boost::begin(rng), middle, boost::end(rng)); in partial_sort() 40 inline const RandomAccessRange& partial_sort(const RandomAccessRange& rng, in partial_sort() function 44 std::partial_sort(boost::begin(rng), middle, boost::end(rng)); in partial_sort() 50 inline RandomAccessRange& partial_sort(RandomAccessRange& rng, in partial_sort() function 55 std::partial_sort(boost::begin(rng), middle, boost::end(rng), in partial_sort() 62 inline const RandomAccessRange& partial_sort(const RandomAccessRange& rng, in partial_sort() function 67 std::partial_sort(boost::begin(rng), middle, boost::end(rng), in partial_sort() 73 using range::partial_sort;
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/doc/reference/algorithm/ |
D | partial_sort.qbk | 6 [section:partial_sort partial_sort] 12 RandomAccessRange& partial_sort( 17 const RandomAccessRange& partial_sort( 22 RandomAccessRange& partial_sort( 28 const RandomAccessRange& partial_sort( 36 `partial_sort` rearranges the elements in `rng`. It places the smallest `distance(begin(rng), middl… 43 Defined in the header file `boost/range/algorithm/partial_sort.hpp`
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.sorting/alg.sort/partial.sort/ |
H A D | ranges_partial_sort.pass.cpp | 40 std::ranges::partial_sort(first, mid, last, comp); 53 std::ranges::partial_sort(range, mid, comp); 72 std::same_as<Iter> decltype(auto) last = std::ranges::partial_sort(begin, mid, end); in test_one() 85 std::same_as<Iter> decltype(auto) last = std::ranges::partial_sort(range, mid); in test_one() 154 auto last = std::ranges::partial_sort(b, m, in.end(), std::ranges::greater{}); in test() 164 auto last = std::ranges::partial_sort(in, m, std::ranges::greater{}); in test() 183 auto last = std::ranges::partial_sort(b, m, in.end(), {}, &A::a); in test() 195 auto last = std::ranges::partial_sort(in, m, {}, &A::a); in test()
|
H A D | partial_sort.pass.cpp | 30 std::partial_sort(Iter(work), Iter(work+m), Iter(work+n)); in test() 43 std::partial_sort(Iter(input), Iter(input + 3), Iter(input + 5)); in test() 55 std::partial_sort(&i, &i, &i); // no-op in main()
|
H A D | partial_sort_comp.pass.cpp | 32 std::partial_sort(Iter(work), Iter(work+m), Iter(work+n), std::greater<T>()); in test() 45 std::partial_sort(Iter(input), Iter(input + 3), Iter(input + 5), std::greater<T>()); in test() 57 std::partial_sort(&i, &i, &i, std::greater<int>()); // no-op in main()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/range/test/algorithm_test/ |
D | partial_sort.cpp | 35 boost::partial_sort(cont, mid); in test_partial_sort() 41 boost::partial_sort(cont2, mid2); in test_partial_sort() 50 std::partial_sort(cont.begin(), mid, cont.end()); in reference_partial_sort() 62 boost::partial_sort(cont, mid, BinaryPredicate()); in test_partial_sort() 68 boost::partial_sort(cont2, mid2, BinaryPredicate()); in test_partial_sort() 77 std::partial_sort(cont.begin(), mid, cont.end(), BinaryPredicate()); in reference_partial_sort()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/algorithms/ |
H A D | partial_sort_stability.pass.cpp | 50 std::partial_sort(v.begin(), v.begin() + kSize / 2, v.end()); in test_randomization() 69 std::partial_sort(v.begin(), v.begin() + kSize / 2, v.end()); in test_same() 70 std::partial_sort(snapshot_v.begin(), snapshot_v.begin() + kSize / 2, snapshot_v.end()); in test_same() 71 …std::partial_sort(snapshot_custom_v.begin(), snapshot_custom_v.begin() + kSize / 2, snapshot_custo… in test_same() 90 std::partial_sort(v.begin(), v.begin() + 5, v.end()); in test_constexpr()
|
H A D | robust_against_cpp20_hostile_iterators.compile.pass.cpp | 168 (void) std::partial_sort(it, it, it); in test() 169 (void) std::partial_sort(it, it, it, pred); in test()
|
/aosp_15_r20/external/libcxx/test/std/algorithms/alg.sorting/alg.sort/partial.sort/ |
H A D | partial_sort_comp.pass.cpp | 46 std::partial_sort(array, array+M, array+N, std::greater<int>()); in test_larger_sorts() 74 std::partial_sort(&i, &i, &i); in main() 91 std::partial_sort(v.begin(), v.begin() + v.size()/2, v.end(), indirect_less()); in main()
|
H A D | partial_sort.pass.cpp | 33 std::partial_sort(array, array+M, array+N); in test_larger_sorts() 60 std::partial_sort(&i, &i, &i); in main()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/c++/v1/__algorithm/ |
D | partial_sort.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void partial_sort( in partial_sort() function 83 partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator _… in partial_sort() function 84 std::partial_sort(__first, __middle, __last, __less<>()); in partial_sort()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/embedded-sysroots/pigweed_riscv32_sysroot/include/c++/v1/__algorithm/ |
D | partial_sort.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void partial_sort( in partial_sort() function 83 partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator _… in partial_sort() function 84 std::partial_sort(__first, __middle, __last, __less<>()); in partial_sort()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/c++/v1/__algorithm/ |
D | partial_sort.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void partial_sort( in partial_sort() function 83 partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator _… in partial_sort() function 84 std::partial_sort(__first, __middle, __last, __less<>()); in partial_sort()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/c++/v1/__algorithm/ |
D | partial_sort.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void partial_sort( in partial_sort() function 83 partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator _… in partial_sort() function 84 std::partial_sort(__first, __middle, __last, __less<>()); in partial_sort()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/include/__algorithm/ |
H A D | partial_sort.h | 73 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void partial_sort( in partial_sort() function 83 partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator _… in partial_sort() function 84 std::partial_sort(__first, __middle, __last, __less<>()); in partial_sort()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/c++/v1/__algorithm/ |
D | partial_sort.h | 70 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void partial_sort( in partial_sort() function 80 partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator _… in partial_sort() function 81 std::partial_sort(__first, __middle, __last, __less<>()); in partial_sort()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/test/algorithm/ |
D | transformation2.cpp | 151 using boost::phoenix::partial_sort; in partial_sort_test() 154 partial_sort(arg1, array + 2)(array); in partial_sort_test() 158 boost::phoenix::partial_sort(arg1, array + 2, std::greater<int>())(array); in partial_sort_test()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/stl/algorithm/ |
D | transformation.hpp | 631 struct partial_sort struct 638 std::partial_sort(detail::begin_(r), m, detail::end_(r)); in operator ()() 644 std::partial_sort(detail::begin_(r), m, detail::end_(r), c); in operator ()() 1163 BOOST_PHOENIX_ADAPT_CALLABLE(partial_sort, impl::partial_sort, 2) 1164 BOOST_PHOENIX_ADAPT_CALLABLE(partial_sort, impl::partial_sort, 3)
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/ |
H A D | ranges_robust_against_nonbool.compile.pass.cpp | 260 (void)std::ranges::partial_sort(it, it, it, pred2); in f() 261 (void)std::ranges::partial_sort(in, it, pred2); in f() 262 (void)std::ranges::partial_sort(it, it, it, pred2, projection); in f() 263 (void)std::ranges::partial_sort(in, it, pred2, projection); in f()
|
/aosp_15_r20/art/imgdiag/ |
H A D | page_info.cc | 278 std::partial_sort( in CountZeroPages() 284 std::partial_sort(std::begin(stats), in CountZeroPages() 292 std::partial_sort( in CountZeroPages()
|
/aosp_15_r20/external/pytorch/aten/src/ATen/native/ |
H A D | TopKImpl.h | 54 std::partial_sort(queue.begin(), queue.begin() + k, queue.end(), in topk_impl_loop() 59 std::partial_sort(queue.begin(), queue.begin() + k, queue.end(), in topk_impl_loop()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/algorithms/alg.sorting/assert.sort.invalid_comparator/ |
H A D | assert.sort.invalid_comparator.pass.cpp | 71 …TEST_LIBCPP_ASSERT_FAILURE(std::partial_sort(copy.begin(), copy.end(), copy.end(), fixture.checked… in check_oob_sort_read() 103 …TEST_LIBCPP_ASSERT_FAILURE(std::ranges::partial_sort(copy, copy.end(), fixture.checked_predicate()… in check_oob_sort_read()
|
/aosp_15_r20/external/executorch/kernels/portable/cpu/ |
H A D | op_topk.cpp | 106 std::partial_sort( in perform_topk() 116 std::partial_sort( in perform_topk()
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/libcxx/algorithms/alg.sorting/ |
H A D | assert.sort.invalid_comparator.pass.cpp | 121 …TEST_LIBCPP_ASSERT_FAILURE(std::partial_sort(copy.begin(), copy.end(), copy.end(), checked_predica… in check_oob_sort_read() 155 …TEST_LIBCPP_ASSERT_FAILURE(std::ranges::partial_sort(copy, copy.end(), checked_predicate), "not a … in check_oob_sort_read()
|
/aosp_15_r20/external/libcxx/fuzzing/ |
H A D | RoutineNames.txt | 9 partial_sort
|