Searched refs:__holeIndex (Results 1 - 1 of 1) sorted by relevance

/haiku/headers/cpp/
H A Dstl_heap.h44 _Distance __holeIndex, _Distance __topIndex, _Tp __value)
46 _Distance __parent = (__holeIndex - 1) / 2;
47 while (__holeIndex > __topIndex && *(__first + __parent) < __value) {
48 *(__first + __holeIndex) = *(__first + __parent);
49 __holeIndex = __parent;
50 __parent = (__holeIndex - 1) / 2;
52 *(__first + __holeIndex) = __value;
75 __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, argument
78 _Distance __parent = (__holeIndex - 1) / 2;
79 while (__holeIndex > __topInde
43 __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __topIndex, _Tp __value) argument
109 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __value) argument
156 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __value, _Compare __comp) argument
[all...]

Completed in 28 milliseconds