Home
last modified time | relevance | path

Searched refs:MAX_CODE_SIZE (Results 1 – 4 of 4) sorted by relevance

/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/
DUnshrinkingInputStream.java33 private static final int MAX_CODE_SIZE = 13; field in UnshrinkingInputStream
34 private static final int MAX_TABLE_SIZE = 1 << MAX_CODE_SIZE;
46 initializeTables(MAX_CODE_SIZE); in UnshrinkingInputStream()
105 if (getCodeSize() < MAX_CODE_SIZE) { in decompressNextSymbol()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DConstants.java273 int MAX_CODE_SIZE = 65536; //bytes field
DConst.java466 public static final int MAX_CODE_SIZE = 65536; //bytes field in Const
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/statics/
DPass3aVerifier.java343 if (code.getCode().length >= Const.MAX_CODE_SIZE) {// length must be LESS than the max in pass3StaticInstructionChecks()
345 …ay in code attribute '"+code+"' too big: must be smaller than "+Const.MAX_CODE_SIZE+"65536 bytes."… in pass3StaticInstructionChecks()