Searched refs:COMPRESSED_SIZE_MAX (Results 1 – 3 of 3) sorted by relevance
20 static final int COMPRESSED_SIZE_MAX = 64 << 10; field in LZMA2OutputStream41 return COMPRESSED_SIZE_MAX > dictSize in getExtraSizeBefore()42 ? COMPRESSED_SIZE_MAX - dictSize : 0; in getExtraSizeBefore()60 rc = new RangeEncoder(COMPRESSED_SIZE_MAX); in LZMA2OutputStream()169 int chunkSize = Math.min(uncompressedSize, COMPRESSED_SIZE_MAX); in writeUncompressed()
44 private static final int COMPRESSED_SIZE_MAX = 1 << 16; field in LZMA2InputStream50 = new RangeDecoderFromBuffer(COMPRESSED_SIZE_MAX);78 return 40 + COMPRESSED_SIZE_MAX / 1024 + getDictSize(dictSize) / 1024; in getMemoryUsage()
20 = new byte[LZMA2OutputStream.COMPRESSED_SIZE_MAX];