Home
last modified time | relevance | path

Searched refs:compressedSizeLimit (Results 1 – 2 of 2) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/
DBlockInputStream.java29 private long compressedSizeLimit; field in BlockInputStream
81 compressedSizeLimit = (DecoderUtil.VLI_MAX & ~3) in BlockInputStream()
90 || compressedSizeInHeader > compressedSizeLimit) in BlockInputStream()
93 compressedSizeLimit = compressedSizeInHeader; in BlockInputStream()
139 if (compressedSizeFromIndex > compressedSizeLimit in BlockInputStream()
155 compressedSizeLimit = compressedSizeFromIndex; in BlockInputStream()
221 || compressedSize > compressedSizeLimit in read()
DBlockOutputStream.java25 private final long compressedSizeLimit; field in BlockOutputStream
83 compressedSizeLimit = (EncoderUtil.VLI_MAX & ~3) in BlockOutputStream()
122 if (compressedSize < 0 || compressedSize > compressedSizeLimit in validate()