Home
last modified time | relevance | path

Searched refs:partial_sort (Results 1 – 25 of 25) sorted by relevance

/third_party/boost/boost/range/algorithm/
Dpartial_sort.hpp30 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;
/third_party/boost/libs/range/doc/reference/algorithm/
Dpartial_sort.qbk6 [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`
/third_party/boost/libs/range/test/algorithm_test/
Dpartial_sort.cpp35 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()
/third_party/boost/libs/phoenix/test/algorithm/
Dtransformation2.cpp151 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()
/third_party/boost/boost/algorithm/
Dsort_subrange.hpp57 std::partial_sort(sub_first, sub_last, last, p); in sort_subrange()
/third_party/boost/boost/phoenix/stl/algorithm/
Dtransformation.hpp631 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)
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/source/sampler/
Dweighted_random_sampler.cc91 std::partial_sort(val_idx.begin(), val_idx.begin() + num_samples_, val_idx.end()); in InitOnePassSampling()
/third_party/boost/libs/range/test/
Dalgorithm.cpp134 boost::partial_sort(rng, boost::begin(rng)); in test_random_algorithms()
135 boost::partial_sort(rng, boost::begin(rng), std::less<value_type>()); in test_random_algorithms()
DJamfile.v2130 [ range-test algorithm_test/partial_sort ]
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/engine/datasetops/
Dbuild_vocab_op.cc170 std::partial_sort(words.begin(), words.begin() + num_words, words.end(), in CollectorThread()
/third_party/boost/boost/lambda/
Dalgorithm.hpp790 struct partial_sort { struct
800 { ::std::partial_sort(a, b, c); } in operator ()()
805 { ::std::partial_sort(a, b, c, d); } in operator ()()
/third_party/boost/libs/phoenix/doc/modules/
Dstl.qbk221 [[`partial_sort(r, m[, f])`] [`partial_sort(begin(r), m, end(r)[, f])`] []]
/third_party/json/test/src/
Dunit-algorithms.cpp253 std::partial_sort(j.begin(), j.begin() + 4, j.end());
/third_party/mindspore/mindspore/lite/src/runtime/kernel/arm/base/
Ddetection_post_process_base.cc33 …std::partial_sort(indexes, indexes + num_to_sort, indexes + num_values, [&scores](const int i, con… in PartialArgSort()
/third_party/boost/libs/range/doc/
Dboost_range.qbk118 …hms_partial_sort__ [link range.reference.algorithms.mutating.partial_sort partial_sort]]
Dheaders.qbk93 [[`<boost/range/algorithm/partial_sort.hpp>`] [__range_algorithms_partial_sort__]]
/third_party/boost/libs/range/doc/html/
Dquickbook_HTML.manifest49 range/reference/algorithms/mutating/partial_sort.html
/third_party/boost/libs/range/doc/reference/
Dalgorithms.qbk96 [include algorithm/partial_sort.qbk]
/third_party/boost/libs/concept_check/test/
Dstl_concept_covering.cpp595 std::partial_sort(ri, ri, ri); in main()
604 std::partial_sort(ri, ri, ri, comp); in main()
/third_party/boost/boost/msm/front/euml/
Dtransformation.hpp53 BOOST_MSM_EUML_FUNCTION(PartialSort_ , std::partial_sort , partial_sort_ , void , void )
/third_party/boost/boost/geometry/index/detail/rtree/rstar/
Dinsert.hpp132 std::partial_sort( in apply()
/third_party/boost/boost/range/detail/
Dmicrosoft.hpp845 std::partial_sort(boost::begin(rng), boost::end(rng), boost::end(rng)); in test_random_access()
/third_party/abseil-cpp/absl/algorithm/
Dcontainer.h963 std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
974 std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
Dcontainer.h963 std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
974 std::partial_sort(container_algorithm_internal::c_begin(sequence), middle,
/third_party/boost/libs/iterator/doc/
Dnew-iter-concepts.rst230 ``random_shuffle, sort, stable_sort, partial_sort, nth_element, push_heap, pop_heap