/openbsd/gnu/llvm/libcxx/include/__algorithm/ |
H A D | make_heap.h | 43 void make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { in make_heap() function 49 void make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { in make_heap() function 50 std::make_heap(std::move(__first), std::move(__last), in make_heap()
|
H A D | ranges_make_heap.h | 72 inline constexpr auto make_heap = __make_heap::__fn{};
|
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/ |
H A D | split_join_fn_imps.hpp | 116 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this)); in split() 117 …std::make_heap(other.m_a_entries, other.m_a_entries + other.m_size, static_cast<entry_cmp& >(other… in split() 166 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this)); in join()
|
H A D | constructors_destructor_fn_imps.hpp | 71 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this)); in copy_from_range()
|
H A D | erase_fn_imps.hpp | 158 std::make_heap(m_a_entries, m_a_entries + m_size, static_cast<entry_cmp& >(*this)); in erase_if()
|
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/25_algorithms/ |
H A D | heap.cc | 78 std::make_heap(s2, s2 + N); in test01() 115 std::make_heap(s2, s2 + N, gt); in test02()
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/backward/ |
H A D | heap.h | 64 using std::make_heap;
|
H A D | algo.h | 124 using std::make_heap;
|
/openbsd/gnu/gcc/libstdc++-v3/include/backward/ |
H A D | heap.h | 64 using std::make_heap;
|
H A D | algo.h | 124 using std::make_heap;
|
/openbsd/gnu/llvm/libcxx/include/ |
H A D | queue | 220 #include <__algorithm/make_heap.h> 706 _VSTD::make_heap(c.begin(), c.end(), comp); 718 _VSTD::make_heap(c.begin(), c.end(), comp); 731 _VSTD::make_heap(c.begin(), c.end(), comp); 744 _VSTD::make_heap(c.begin(), c.end(), comp); 759 _VSTD::make_heap(c.begin(), c.end(), comp); 794 _VSTD::make_heap(c.begin(), c.end(), comp); 820 _VSTD::make_heap(c.begin(), c.end(), comp); 845 _VSTD::make_heap(c.begin(), c.end(), comp); 858 _VSTD::make_heap(c.begin(), c.end(), comp); [all …]
|
/openbsd/gnu/llvm/libcxx/benchmarks/algorithms/ |
H A D | ranges_make_heap.bench.cpp | 21 [](auto& Copy) { std::ranges::make_heap(Copy); }); in run()
|
H A D | make_heap.bench.cpp | 21 [](auto& Copy) { std::make_heap(Copy.begin(), Copy.end()); }); in run()
|
H A D | ranges_make_heap_then_sort_heap.bench.cpp | 21 std::ranges::make_heap(Copy); in run()
|
H A D | make_heap_then_sort_heap.bench.cpp | 21 std::make_heap(Copy.begin(), Copy.end()); in run()
|
H A D | common.h | 172 std::make_heap(V.begin(), V.end()); in sortValues()
|
/openbsd/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | stl_queue.h | 353 { std::make_heap(c.begin(), c.end(), comp); } in c() 378 std::make_heap(c.begin(), c.end(), comp); in c()
|
H A D | stl_heap.h | 344 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) in make_heap() function 384 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, in make_heap() function
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | stl_queue.h | 335 { make_heap(c.begin(), c.end(), comp); } in c() 358 make_heap(c.begin(), c.end(), comp); in c()
|
H A D | stl_heap.h | 226 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) in make_heap() function 251 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, in make_heap() function
|
H A D | stl_algo.h | 2517 make_heap(__first, __middle); in partial_sort() 2557 make_heap(__first, __middle, __comp); in partial_sort() 2604 make_heap(__result_first, __result_real_last); in partial_sort_copy() 2660 make_heap(__result_first, __result_real_last, __comp); in partial_sort_copy()
|
/openbsd/gnu/llvm/llvm/include/llvm/ADT/ |
H A D | PriorityQueue.h | 71 std::make_heap(this->c.begin(), this->c.end(), this->comp); in reheapify()
|
/openbsd/gnu/llvm/llvm/lib/Analysis/ |
H A D | InlineOrder.cpp | 270 std::make_heap(Heap.begin(), Heap.end(), isLess); in erase_if()
|
/openbsd/gnu/llvm/libcxx/benchmarks/ |
H A D | CMakeLists.txt | 162 algorithms/make_heap.bench.cpp
|
/openbsd/gnu/llvm/llvm/lib/Transforms/IPO/ |
H A D | FunctionSpecialization.cpp | 308 std::make_heap(BestSpecs.begin(), BestSpecs.begin() + NSpecs, CompareGain); in run()
|