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

1 2

  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractHashedMap.java 70 protected static final int MAXIMUM_CAPACITY = 1 << 30;
579 if (newCapacity <= MAXIMUM_CAPACITY) {
630 if (proposedCapacity > MAXIMUM_CAPACITY) {
631 newCapacity = MAXIMUM_CAPACITY;
636 if (newCapacity > MAXIMUM_CAPACITY) {
637 newCapacity = MAXIMUM_CAPACITY;
    [all...]
  /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 127 static final int MAXIMUM_CAPACITY = 1 << 30;
258 int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMakerInternalMap.java 108 static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
217 int initialCapacity = Math.min(builder.getInitialCapacity(), MAXIMUM_CAPACITY);
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 333 private static final int MAXIMUM_CAPACITY = 1 << 30;
337 * (i.e., at least 1) and at most MAXIMUM_CAPACITY.
504 return (n < 0) ? 1 : (n >= MAXIMUM_CAPACITY) ? MAXIMUM_CAPACITY : n + 1;
649 int cap = ((initialCapacity >= (MAXIMUM_CAPACITY >>> 1)) ?
650 MAXIMUM_CAPACITY :
709 int cap = (size >= (long)MAXIMUM_CAPACITY) ?
710 MAXIMUM_CAPACITY : tableSizeFor((int)size);
    [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 
  /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 
  /frameworks/testing/espresso/libs/
guava-14.0.1.jar 
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 

Completed in 83 milliseconds

1 2