Lines Matching full:decompression

53   The LZ4 compression library provides in-memory compression and decompression functions.
62 Exact metadata depends on exact decompression function.
268 * the receiving decompression function should provide
364 * The same dictionary will have to be loaded on decompression side for successful decoding.
408 * Note: there is no equivalent LZ4_attach_*() method on the decompression side
412 * or the stateless LZ4_decompress_safe_usingDict() for one-shot decompression.
454 * Streaming Decompression Functions
460 * creation / destruction of streaming decompression tracking context.
472 * Use this function to start decompression of a new stream of blocks.
474 …Dictionary is presumed stable : it must remain accessible and unmodified during next decompression.
484 * When setting such a ring buffer for streaming decompression,
494 * This decoding function allows decompression of consecutive blocks in "streaming" mode.
497 * A block is an unsplittable entity, and must be presented entirely to the decompression function.
501 * @LZ4_streamDecode : decompression state, tracking the position in memory of past data
513 …* Special : if decompression side sets a ring buffer, it must respect one of the following condit…
514 * - Decompression buffer size is _at least_ LZ4_decoderRingBufferSize(maxBlockSize).
519 * Decompression buffer size is _exactly_ the same as compression buffer size,
523 * - Decompression buffer is larger than encoding buffer, by a minimum of maxBlockSize more bytes.
528 …e the last 64KB of decoded data into a safe buffer where it can't be modified during decompression,
541 * Dictionary is presumed stable : it must remain accessible and unmodified during decompression.
542 * Performance tip : Decompression speed can be substantially increased
553 * Performance tip : Decompression speed can be substantially increased
619 /*! In-place compression and decompression
624 * and decompression to start at beginning of the buffer.
632 * This technique is more useful for decompression,
636 * In-place decompression will work inside any buffer
813 /*! Obsolete decompression functions (since v1.8.0) */