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

1 2

  /libcore/luni/src/main/java/java/util/
HashMap.java 63 private static final int MAXIMUM_CAPACITY = 1 << 30;
153 } else if (capacity > MAXIMUM_CAPACITY) {
154 capacity = MAXIMUM_CAPACITY;
216 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
221 // boolean expr is equivalent to result >= 0 && result<MAXIMUM_CAPACITY
222 return (result & ~(MAXIMUM_CAPACITY-1))==0 ? result : MAXIMUM_CAPACITY;
560 * MAXIMUM_CAPACITY, this method is a no-op. Returns the table, which
561 * will be new unless we were already at MAXIMUM_CAPACITY.
566 if (oldCapacity == MAXIMUM_CAPACITY) {
    [all...]
Hashtable.java 48 private static final int MAXIMUM_CAPACITY = 1 << 30;
132 } else if (capacity > MAXIMUM_CAPACITY) {
133 capacity = MAXIMUM_CAPACITY;
192 * The returned value will be between 0 and MAXIMUM_CAPACITY (inclusive).
197 // boolean expr is equivalent to result >= 0 && result<MAXIMUM_CAPACITY
198 return (result & ~(MAXIMUM_CAPACITY-1))==0 ? result : MAXIMUM_CAPACITY;
497 * MAXIMUM_CAPACITY, this method is a no-op. Returns the table, which
498 * will be new unless we were already at MAXIMUM_CAPACITY.
503 if (oldCapacity == MAXIMUM_CAPACITY) {
    [all...]
  /external/guava/guava/src/com/google/common/cache/
LocalCache.java 132 static final int MAXIMUM_CAPACITY = 1 << 30;
264 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/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 348 private static final int MAXIMUM_CAPACITY = 1 << 30;
352 * (i.e., at least 1) and at most MAXIMUM_CAPACITY.
536 return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
675 int cap = ((initialCapacity >= (MAXIMUM_CAPACITY >>> 1)) ?
676 MAXIMUM_CAPACITY :
    [all...]
  /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 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
FlexAntTasks.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 
  /prebuilts/sdk/tools/lib/
guava-10.0.1.jar 
lint.jar 
lint_api.jar 
lint_checks.jar 
  /libcore/benchmarks/libs/
caliper.jar 
  /external/vogar/lib/
guava.jar 
  /frameworks/data-binding/prebuilds/1.0-rc0/
databinding-studio-bundle.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
guava-17.0.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 

Completed in 228 milliseconds

1 2