Searched refs:BlockLZ4CompressorInputStream (Results 1 – 7 of 7) sorted by relevance
34 …try (InputStream a = new BlockLZ4CompressorInputStream(new FileInputStream(getFile("bla.tar.block_… in readBlaLz4()46 final BlockLZ4CompressorInputStream in = in singleByteReadConsistentlyReturnsMinusOneAtEof()47 new BlockLZ4CompressorInputStream(is); in singleByteReadConsistentlyReturnsMinusOneAtEof()60 final BlockLZ4CompressorInputStream in = in multiByteReadConsistentlyReturnsMinusOneAtEof()61 new BlockLZ4CompressorInputStream(is); in multiByteReadConsistentlyReturnsMinusOneAtEof()
71 …BlockLZ4CompressorInputStream sis = new BlockLZ4CompressorInputStream(new FileInputStream(outputSz… in roundTripTest()
221 if (blockLengths >= BlockLZ4CompressorInputStream.WINDOW_SIZE) { in clearUnusedBlocks()292 if (pairLengths >= BlockLZ4CompressorInputStream.WINDOW_SIZE) { in clearUnusedPairs()412 int maxLen = BlockLZ4CompressorInputStream.WINDOW_SIZE - 1; in createParameterBuilder()413 return Parameters.builder(BlockLZ4CompressorInputStream.WINDOW_SIZE) in createParameterBuilder()457 if (litLength >= BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK) { in writeTo()458 … writeLength(litLength - BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK, out); in writeTo()465 …if (brLength - MIN_BACK_REFERENCE_LENGTH >= BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK… in writeTo()467 - BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK, out); in writeTo()482 return (l << BlockLZ4CompressorInputStream.SIZE_BITS) | br; in lengths()
216 blockDependencyBuffer = new byte[BlockLZ4CompressorInputStream.WINDOW_SIZE]; in readFrameDescriptor()272 BlockLZ4CompressorInputStream s = new BlockLZ4CompressorInputStream(capped); in nextBlock()326 BlockLZ4CompressorInputStream l = (BlockLZ4CompressorInputStream) currentBlock; in readOnce()
34 public class BlockLZ4CompressorInputStream extends AbstractLZ77CompressorInputStream { class55 public BlockLZ4CompressorInputStream(final InputStream is) throws IOException { in BlockLZ4CompressorInputStream() method in BlockLZ4CompressorInputStream
198 ? new byte[BlockLZ4CompressorInputStream.WINDOW_SIZE] in FramedLZ4CompressorOutputStream()
43 import org.apache.commons.compress.compressors.lz4.BlockLZ4CompressorInputStream;641 return new BlockLZ4CompressorInputStream(in);