Home
last modified time | relevance | path

Searched refs:make_heap (Results 1 – 5 of 5) sorted by relevance

/external/stlport/stlport/stl/
D_queue.h174 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
191 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
199 make_heap(c.begin(), c.end(), comp); in _STLP_RELOPS_OPERATORS()
204 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
209 { make_heap(c.begin(), c.end(), comp); } in _STLP_RELOPS_OPERATORS()
216 make_heap(c.begin(), c.end(), comp); in _STLP_RELOPS_OPERATORS()
D_heap.h90 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last);
94 make_heap(_RandomAccessIterator __first,
D_heap.c206 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) in make_heap() function
233 make_heap(_RandomAccessIterator __first, in make_heap() function
D_algo.c1222 make_heap(__first, __middle, __comp); in __partial_sort()
1268 make_heap(__result_first, __result_real_last, __comp); in __partial_sort_copy()
/external/stlport/test/unit/
Dheap_test.cpp39 make_heap(numbers, numbers + 6); in mkheap0()
57 make_heap(numbers, numbers + 6, greater<int>()); in mkheap1()
78 make_heap(v.begin(), v.end()); in pheap1()
97 make_heap(v.begin(), v.end(), greater<int>()); in pheap2()