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

/openbsd-current/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstl_heap.h139 _Distance __secondChild = 2 * __holeIndex + 2; local
140 while (__secondChild < __len) {
141 if (*(__first + __secondChild) < *(__first + (__secondChild - 1)))
142 __secondChild--;
143 *(__first + __holeIndex) = *(__first + __secondChild);
144 __holeIndex = __secondChild;
145 __secondChild = 2 * (__secondChild + 1);
147 if (__secondChild
185 _Distance __secondChild = 2 * __holeIndex + 2; local
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_heap.h213 _Distance __secondChild = 2 * __holeIndex + 2; local
214 while (__secondChild < __len)
216 if (*(__first + __secondChild) < *(__first + (__secondChild - 1)))
217 __secondChild--;
218 *(__first + __holeIndex) = *(__first + __secondChild);
219 __holeIndex = __secondChild;
220 __secondChild = 2 * (__secondChild + 1);
222 if (__secondChild
276 _Distance __secondChild = 2 * __holeIndex + 2; local
[all...]

Completed in 124 milliseconds