Searched refs:pivotNewIndex (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava/src/com/google/common/collect/ |
D | Ordering.java | 460 int pivotNewIndex = partition(values, left, right, pivotIndex); in quicksortLeastK() local 461 quicksortLeastK(values, left, pivotNewIndex - 1, k); in quicksortLeastK() 462 if (pivotNewIndex < k) { in quicksortLeastK() 463 quicksortLeastK(values, pivotNewIndex + 1, right, k); in quicksortLeastK()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/ |
D | utilities.js | 588 var pivotNewIndex = array.partition(comparator, left, right, pivotIndex); 589 if (sortWindowLeft < pivotNewIndex) 590 … quickSortRange(array, comparator, left, pivotNewIndex - 1, sortWindowLeft, sortWindowRight); 591 if (pivotNewIndex < sortWindowRight) 592 … quickSortRange(array, comparator, pivotNewIndex + 1, right, sortWindowLeft, sortWindowRight);
|