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

  /frameworks/base/core/java/android/util/
IntArray.java 98 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ?
100 final int newCapacity = targetCap > minCapacity ? targetCap : minCapacity;
LongArray.java 97 final int targetCap = currentSize + (currentSize < (MIN_CAPACITY_INCREMENT / 2) ?
99 final int newCapacity = targetCap > minCapacity ? targetCap : minCapacity;

Completed in 940 milliseconds