HomeSort by relevance Sort by last modified time
    Searched defs:MAXIMUM_CAPACITY (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /libcore/ojluni/src/main/java/java/util/
IdentityHashMap.java 163 * In fact, the map can hold no more than MAXIMUM_CAPACITY-1 items
167 private static final int MAXIMUM_CAPACITY = 1 << 29;
232 * MAXIMUM_CAPACITY, inclusive, that is greater than (3 *
234 * MAXIMUM_CAPACITY.
239 (expectedMaxSize > MAXIMUM_CAPACITY / 3) ? MAXIMUM_CAPACITY :
247 * MINIMUM_CAPACITY and MAXIMUM_CAPACITY inclusive.
252 // assert initCapacity <= MAXIMUM_CAPACITY;
463 if (oldLength == 2 * MAXIMUM_CAPACITY) { // can't expand any further
464 if (size == MAXIMUM_CAPACITY - 1
    [all...]
WeakHashMap.java 150 private static final int MAXIMUM_CAPACITY = 1 << 30;
211 if (initialCapacity > MAXIMUM_CAPACITY)
212 initialCapacity = MAXIMUM_CAPACITY;
475 * If current capacity is MAXIMUM_CAPACITY, this method does not
481 * capacity is MAXIMUM_CAPACITY (in which case value
487 if (oldCapacity == MAXIMUM_CAPACITY) {
556 if (targetCapacity > MAXIMUM_CAPACITY)
557 targetCapacity = MAXIMUM_CAPACITY;
    [all...]
HashMap.java 242 static final int MAXIMUM_CAPACITY = 1 << 30;
384 return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
450 if (initialCapacity > MAXIMUM_CAPACITY)
451 initialCapacity = MAXIMUM_CAPACITY;
504 int t = ((ft < (float)MAXIMUM_CAPACITY) ?
505 (int)ft : MAXIMUM_CAPACITY);
682 if (oldCap >= MAXIMUM_CAPACITY) {
686 else if ((newCap = oldCap << 1) < MAXIMUM_CAPACITY &&
698 newThr = (newCap < MAXIMUM_CAPACITY && ft < (float)MAXIMUM_CAPACITY
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 131 static final int MAXIMUM_CAPACITY = 1 << 30;
261 int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 107 static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
216 int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 508 private static final int MAXIMUM_CAPACITY = 1 << 30;
512 * (i.e., at least 1) and at most MAXIMUM_CAPACITY.
    [all...]
  /external/guice/extensions/persist/lib/
hibernate-search.jar 
dom4j-1.6.1.jar 
  /prebuilts/tools/common/m2/repository/com/sun/xml/fastinfoset/FastInfoset/1.2.13/
FastInfoset-1.2.13.jar 
  /external/caliper/lib/
gson-2.2.2.jar 
jersey-core-1.11.jar 
  /prebuilts/devtools/tools/lib/
uast-162.2228.14.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/162.2228.14/
uast-162.2228.14.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.4/
uast-145.597.4.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/uast/
uast-145.597.3.jar 
uast-162.2228.14.jar 
  /external/annotation-tools/annotation-file-utilities/lib/
plume-core.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
dom4j-1.6.1.jar 
  /prebuilts/tools/common/m2/repository/dom4j/dom4j/1.6.1/
dom4j-1.6.1.jar 
  /prebuilts/tools/common/intellij-core/171.2455.10/
intellij-core.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.6-android/
guava-23.6-android.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 

Completed in 401 milliseconds

1 2 3 4 5 6 7