Home | History | Annotate | Download | only in bits

Lines Matching refs:__secondChild

211       _Distance __secondChild = __holeIndex;
212 while (__secondChild < (__len - 1) / 2)
214 __secondChild = 2 * (__secondChild + 1);
215 if (__comp(__first + __secondChild,
216 __first + (__secondChild - 1)))
217 __secondChild--;
218 *(__first + __holeIndex) = _GLIBCXX_MOVE(*(__first + __secondChild));
219 __holeIndex = __secondChild;
221 if ((__len & 1) == 0 && __secondChild == (__len - 2) / 2)
223 __secondChild = 2 * (__secondChild + 1);
225 + (__secondChild - 1)));
226 __holeIndex = __secondChild - 1;