HomeSort by relevance Sort by last modified time
    Searched defs:toTrickle (Results 1 - 2 of 2) sorted by null

  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 391 E toTrickle = elementData(size);
393 MoveDesc<E> changes = fillHole(index, toTrickle);
398 return new MoveDesc<E>(actualLastElement, toTrickle);
409 private MoveDesc<E> fillHole(int index, E toTrickle) {
412 // with the last element of the heap, toTrickle.
416 // comparisons with toTrickle, but in some cases we will need to bubble it
419 // Try to see if toTrickle can be bubbled up min levels.
420 int bubbledTo = heap.bubbleUpAlternatingLevels(vacated, toTrickle);
422 // Could not bubble toTrickle up min levels, try moving
425 return heap.tryCrossOverAndBubbleUp(index, vacated, toTrickle);
    [all...]
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 37 milliseconds