Home
last modified time | relevance | path

Searched refs:MAX_TABLE_SIZE (Results 1 – 5 of 5) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DUnshrinkingInputStream.java34 private static final int MAX_TABLE_SIZE = 1 << MAX_CODE_SIZE; field in UnshrinkingInputStream
57 while ((tableSize < MAX_TABLE_SIZE) && isUsed[tableSize]) { in addEntry()
61 final int idx = addEntry(previousCode, character, MAX_TABLE_SIZE); in addEntry()
69 final boolean[] isParent = new boolean[MAX_TABLE_SIZE]; in partialClear()
/external/guava/guava/src/com/google/common/collect/
DHashing.java54 private static int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO; field in Hashing
64 return (tableSize > 0) ? tableSize : MAX_TABLE_SIZE; in closedTableSize()
70 return size > loadFactor * tableSize && tableSize < MAX_TABLE_SIZE; in needsResizing()
DImmutableSet.java230 static final int MAX_TABLE_SIZE = Ints.MAX_POWER_OF_TWO; field in ImmutableSet
237 (int) (MAX_TABLE_SIZE * DESIRED_LOAD_FACTOR);
259 checkArgument(setSize < MAX_TABLE_SIZE, "collection too large"); in chooseTableSize()
260 return MAX_TABLE_SIZE; in chooseTableSize()
/external/python/cpython2/Tools/unicode/
Dgencodec.py32 MAX_TABLE_SIZE = 8192 variable
219 if maxkey > MAX_TABLE_SIZE:
/external/python/cpython3/Tools/unicode/
Dgencodec.py32 MAX_TABLE_SIZE = 8192 variable
221 if maxkey > MAX_TABLE_SIZE: