Lines Matching refs:stepSize
530 for (size_t stepSize = 1; stepSize <= sizeLog; stepSize++) {
531 auto jumpUpHalf = jumpUp[root][stepSize - 1];
532 jumpUp[root][stepSize] = jumpUp[jumpUpHalf][stepSize - 1];
548 for (size_t stepSize = 1; stepSize <= sizeLog; stepSize++) {
549 auto jumpUpHalf = jumpUp[succ][stepSize - 1];
550 jumpUp[succ][stepSize] = jumpUp[jumpUpHalf][stepSize - 1];
565 for (size_t stepSize = sizeLog + 1; stepSize > 0; stepSize--) {
566 if (!isAncestor(jumpUp[nodeA][stepSize - 1], nodeB)) {
567 nodeA = jumpUp[nodeA][stepSize - 1];