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

/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_heap.h227 _Distance __secondChild = __holeIndex; local
228 while (__secondChild < (__len - 1) / 2)
230 __secondChild = 2 * (__secondChild + 1);
231 if (__comp(__first + __secondChild,
232 __first + (__secondChild - 1)))
233 __secondChild--;
234 *(__first + __holeIndex) = _GLIBCXX_MOVE(*(__first + __secondChild));
235 __holeIndex = __secondChild;
237 if ((__len & 1) == 0 && __secondChild
[all...]
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_heap.h228 _Distance __secondChild = __holeIndex; local
229 while (__secondChild < (__len - 1) / 2)
231 __secondChild = 2 * (__secondChild + 1);
232 if (__comp(__first + __secondChild,
233 __first + (__secondChild - 1)))
234 __secondChild--;
235 *(__first + __holeIndex) = _GLIBCXX_MOVE(*(__first + __secondChild));
236 __holeIndex = __secondChild;
238 if ((__len & 1) == 0 && __secondChild
[all...]

Completed in 72 milliseconds