/external/dagger2/java/dagger/internal/ |
D | DaggerCollections.java | 34 private static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2); field in DaggerCollections 81 if (expectedSize < MAX_POWER_OF_TWO) { in calculateInitialCapacity()
|
/external/guava/android/guava/src/com/google/common/collect/ |
D | CompactHashing.java | 47 static final int MAX_SIZE = Ints.MAX_POWER_OF_TWO - 1; 76 || buckets > Ints.MAX_POWER_OF_TWO in createTable()
|
D | Hashing.java | 57 private static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
|
D | ImmutableSet.java | 195 static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
|
D | Collections2.java | 329 return new StringBuilder((int) Math.min(size * 8L, Ints.MAX_POWER_OF_TWO)); in newStringBuilderForCollection()
|
D | MapMakerInternalMap.java | 105 static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
|
D | Maps.java | 228 if (expectedSize < Ints.MAX_POWER_OF_TWO) {
|
/external/guava/guava/src/com/google/common/collect/ |
D | CompactHashing.java | 47 static final int MAX_SIZE = Ints.MAX_POWER_OF_TWO - 1; 76 || buckets > Ints.MAX_POWER_OF_TWO in createTable()
|
D | Hashing.java | 57 private static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
|
D | Collections2.java | 352 return new StringBuilder((int) Math.min(size * 8L, Ints.MAX_POWER_OF_TWO)); in newStringBuilderForCollection()
|
D | ImmutableSet.java | 627 static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO;
|
D | MapMakerInternalMap.java | 105 static final int MAXIMUM_CAPACITY = Ints.MAX_POWER_OF_TWO;
|
D | Maps.java | 329 if (expectedSize < Ints.MAX_POWER_OF_TWO) {
|
/external/guava/guava/src/com/google/common/primitives/ |
D | SignedBytes.java | 47 public static final byte MAX_POWER_OF_TWO = 1 << 6; field in SignedBytes
|
D | UnsignedBytes.java | 54 public static final byte MAX_POWER_OF_TWO = (byte) 0x80; field in UnsignedBytes
|
D | Shorts.java | 62 public static final short MAX_POWER_OF_TWO = 1 << (Short.SIZE - 2); field in Shorts
|
D | Ints.java | 64 public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2); field in Ints
|
D | Longs.java | 63 public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2); field in Longs
|
/external/guava/android/guava/src/com/google/common/primitives/ |
D | SignedBytes.java | 47 public static final byte MAX_POWER_OF_TWO = 1 << 6; field in SignedBytes
|
D | UnsignedBytes.java | 54 public static final byte MAX_POWER_OF_TWO = (byte) 0x80; field in UnsignedBytes
|
D | Shorts.java | 62 public static final short MAX_POWER_OF_TWO = 1 << (Short.SIZE - 2); field in Shorts
|
D | Ints.java | 62 public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2); field in Ints
|
D | Longs.java | 61 public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2); field in Longs
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
D | Striped.java | 386 this.mask = stripes > Ints.MAX_POWER_OF_TWO ? ALL_SET : ceilToPowerOfTwo(stripes) - 1; 411 Preconditions.checkArgument(stripes <= Ints.MAX_POWER_OF_TWO, "Stripes must be <= 2^30)");
|
/external/guava/android/guava/src/com/google/common/util/concurrent/ |
D | Striped.java | 386 this.mask = stripes > Ints.MAX_POWER_OF_TWO ? ALL_SET : ceilToPowerOfTwo(stripes) - 1; 411 Preconditions.checkArgument(stripes <= Ints.MAX_POWER_OF_TWO, "Stripes must be <= 2^30)");
|