Searched refs:make_heap (Results 1 – 5 of 5) sorted by relevance
/external/stlport/stlport/stl/ |
D | _queue.h | 174 { 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.h | 90 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last); 94 make_heap(_RandomAccessIterator __first,
|
D | _heap.c | 206 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) in make_heap() function 233 make_heap(_RandomAccessIterator __first, in make_heap() function
|
D | _algo.c | 1222 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/ |
D | heap_test.cpp | 39 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()
|