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

/external/stlport/stlport/stl/
H A D_heap.c43 _Distance __holeIndex, _Distance __topIndex, _Tp __val)
45 _Distance __parent = (__holeIndex - 1) / 2;
46 while (__holeIndex > __topIndex && *(__first + __parent) < __val) {
47 *(__first + __holeIndex) = *(__first + __parent);
48 __holeIndex = __parent;
49 __parent = (__holeIndex - 1) / 2;
51 *(__first + __holeIndex) = __val;
76 __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, argument
79 _Distance __parent = (__holeIndex - 1) / 2;
80 while (__holeIndex > __topInde
42 __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __topIndex, _Tp __val) argument
111 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __val) argument
146 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __len, _Tp __val, _Compare __comp) argument
[all...]
H A D_heap.h49 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,
68 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex,

Completed in 220 milliseconds