Lines Matching full:decompression
17 <li><a href="#Chapter7">Streaming Decompression Functions</a></li>
28 The LZ4 compression library provides in-memory compression and decompression functions.
37 Exact metadata depends on exact decompression function.
184 the receiving decompression function should provide
274 The same dictionary will have to be loaded on decompression side for successful decoding.
320 Note: there is no equivalent LZ4_attach_*() method on the decompression side
324 or the stateless LZ4_decompress_safe_usingDict() for one-shot decompression.
362 <a name="Chapter7"></a><h2>Streaming Decompression Functions</h2><pre> Bufferless synchronous API
371 </b><p> creation / destruction of streaming decompression tracking context.
378 Use this function to start decompression of a new stream of blocks.
380 …Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
391 When setting such a ring buffer for streaming decompression,
403 </b><p> This decoding function allows decompression of consecutive blocks in "streaming" mode.
406 A block is an unsplittable entity, and must be presented entirely to the decompression function.
410 @LZ4_streamDecode : decompression state, tracking the position in memory of past data
422 …Special : if decompression side sets a ring buffer, it must respect one of the following condition…
423 - Decompression buffer size is _at least_ LZ4_decoderRingBufferSize(maxBlockSize).
428 Decompression buffer size is _exactly_ the same as compression buffer size,
432 - Decompression buffer is larger than encoding buffer, by a minimum of maxBlockSize more bytes.
437 …e the last 64KB of decoded data into a safe buffer where it can't be modified during decompression,
448 Dictionary is presumed stable : it must remain accessible and unmodified during decompression.
449 Performance tip : Decompression speed can be substantially increased
461 Performance tip : Decompression speed can be substantially increased
506 and decompression to start at beginning of the buffer.
514 This technique is more useful for decompression,
518 In-place decompression will work inside any buffer