Lines Matching full:decompression
16 <li><a href="#Chapter6">Advanced decompression API (Requires v1.4.0+)</a></li>
19 <li><a href="#Chapter9">Streaming decompression - HowTo</a></li>
28 <li><a href="#Chapter18">Advanced decompression functions</a></li>
32 <li><a href="#Chapter22">Buffer-less streaming decompression (synchronous mode)</a></li>
39 The zstd compression library provides in-memory compression and decompression
176 <h3>Decompression context</h3><pre> When decompressing many times,
229 * This will set a memory budget for streaming decompression,
235 … * requires explicitly allowing such size at streaming decompression stage. */
257 … * Larger values increase compression and decompression speed, but decrease ratio.
464 <a name="Chapter6"></a><h2>Advanced decompression API (Requires v1.4.0+)</h2><pre></pre>
472 … * By default, a decompression context accepts window sizes <= (1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT).
505 Setting a parameter is only possible during frame initialization (before starting decompression).
660 <a name="Chapter9"></a><h2>Streaming decompression - HowTo</h2><pre>
665 Use ZSTD_initDStream() to start a new decompression operation.
691 <h3>Streaming decompression functions</h3><pre></pre><b><pre></pre></b><BR>
715 </b><p> Decompression using a known Dictionary.
755 </b><p> Create a digested dictionary, ready to start decompression operation without startup delay.
768 </b><p> Decompression using a digested Dictionary.
813 Decompression will have to use same dictionary.
848 Decompression will need same prefix to properly regenerate data.
850 …but performs much faster, especially during decompression (compression speed is tunable with compr…
884 The dictionary remains active for decompression of future frames using same DCtx.
887 will store the DDict references in a table, and the DDict used for decompression
888 will be determined at decompression time, as per the dict ID in the frame.
909 Note 2 : Prefix buffer is referenced. It **must** outlive decompression.
976 … largest match distance : larger == more compression, more memory needed during decompression */<b>
980 …unsigned minMatch; </b>/**< match length searched : larger == faster decompression, sometim…
1498 <a name="Chapter18"></a><h2>Advanced decompression functions</h2><pre></pre>
1508 </b><p> Create a digested dictionary, ready to start decompression operation without startup delay.
1518 …hat `dict` remains accessible (and unmodified) while being used, so it must outlive decompression.
1537 …By default, a decompression context accepts all window sizes <= (1 << ZSTD_WINDOWLOG_LIMIT_DEFAULT)
1543 </b><p> Get the requested decompression parameter value, selected by enum ZSTD_dParameter,
1707 <h3>Advanced Streaming decompression functions</h3><pre></pre><b><pre></pre></b><BR>
1723 note : ddict is referenced, it must outlive decompression session
1732 re-use decompression parameters from previous init; saves dictionary loading
1779 <a name="Chapter22"></a><h2>Buffer-less streaming decompression (synchronous mode)</h2><pre>
1800 …ZSTD_decompressContinue() needs previous data blocks during decompression, up to `windowSize` byte…
1821 Once buffers are setup, start decompression, with ZSTD_decompressBegin().
1822 …If decompression requires a dictionary, use ZSTD_decompressBegin_usingDict() or ZSTD_decompressBeg…
1833 Context can then be reset to start a new decompression.
1850 <h3>Buffer-less streaming decompression functions</h3><pre></pre><b><pre>typedef enum { ZSTD_frame,…
1885 + decompression : any ZSTD_decompressBegin*() variant, including with dictionary
1905 …/b>/**< insert uncompressed block into `dctx` history. Useful for multi-blocks decompression. */<b>