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

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_heap.h135 _Distance __holeIndex, _Distance __topIndex, _Tp __value,
138 _Distance __parent = (__holeIndex - 1) / 2;
139 while (__holeIndex > __topIndex && __comp(__first + __parent, __value))
141 *(__first + __holeIndex) = _GLIBCXX_MOVE(*(__first + __parent));
142 __holeIndex = __parent;
143 __parent = (__holeIndex - 1) / 2;
145 *(__first + __holeIndex) = _GLIBCXX_MOVE(__value);
223 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, argument
226 const _Distance __topIndex = __holeIndex;
227 _Distance __secondChild = __holeIndex;
134 __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __topIndex, _Tp __value, _Compare& __comp) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_heap.h136 _Distance __holeIndex, _Distance __topIndex, _Tp __value,
139 _Distance __parent = (__holeIndex - 1) / 2;
140 while (__holeIndex > __topIndex && __comp(__first + __parent, __value))
142 *(__first + __holeIndex) = _GLIBCXX_MOVE(*(__first + __parent));
143 __holeIndex = __parent;
144 __parent = (__holeIndex - 1) / 2;
146 *(__first + __holeIndex) = _GLIBCXX_MOVE(__value);
224 __adjust_heap(_RandomAccessIterator __first, _Distance __holeIndex, argument
227 const _Distance __topIndex = __holeIndex;
228 _Distance __secondChild = __holeIndex;
135 __push_heap(_RandomAccessIterator __first, _Distance __holeIndex, _Distance __topIndex, _Tp __value, _Compare& __comp) argument
[all...]

Completed in 91 milliseconds