Home
last modified time | relevance | path

Searched refs:getLeftChildIndex (Results 1 – 1 of 1) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DMinMaxPriorityQueue.java591 return findMin(getLeftChildIndex(index), 2); in findMinChild()
598 int leftChildIndex = getLeftChildIndex(index); in findMinGrandChild()
602 return findMin(getLeftChildIndex(leftChildIndex), 4); in findMinGrandChild()
625 && getLeftChildIndex(uncleIndex) >= size) { in crossOverUp()
657 && getLeftChildIndex(uncleIndex) >= size) { in getCorrectLastElement()
706 if ((getLeftChildIndex(i) < size) in verifyIndex()
707 && (compareElements(i, getLeftChildIndex(i)) > 0)) { in verifyIndex()
725 private int getLeftChildIndex(int i) { in getLeftChildIndex() method in MinMaxPriorityQueue.Heap