Lines Matching full:decoder

27  *                          part of the decoder state. All required data
68 * possible only if the decoder was initialized
81 * compression options. In the decoder this means
98 * decoder produce more output than the caller expected. When it is
141 * struct xz_dec - Opaque type to hold the XZ decoder state
146 * xz_dec_init() - Allocate and initialize a XZ decoder state
161 * there is no need to allocate the dictionary as part of the decoder's
191 * xz_dec_run() - Run the XZ decoder
192 * @s: Decoder state allocated using xz_dec_init()
204 * cannot give the single-call decoder a too small buffer and then expect to
206 * the multi-call decoder if you don't want to uncompress the whole stream.
211 * xz_dec_reset() - Reset an already allocated decoder state
212 * @s: Decoder state allocated using xz_dec_init()
214 * This function can be used to reset the multi-call decoder state without
224 * xz_dec_end() - Free the memory allocated for the decoder state
225 * @s: Decoder state allocated using xz_dec_init(). If s is NULL,
236 * The compressed format supported by this decoder is a raw LZMA stream
245 * struct xz_dec_microlzma - Opaque type to hold the MicroLZMA decoder state
250 * xz_dec_microlzma_alloc() - Allocate memory for the MicroLZMA decoder
270 * xz_dec_microlzma_reset() - Reset the MicroLZMA decoder state
271 * @s: Decoder state allocated using xz_dec_microlzma_alloc()
287 * xz_dec_microlzma_run() - Run the MicroLZMA decoder
288 * @s: Decoder state initialized using xz_dec_microlzma_reset()
325 * xz_dec_microlzma_end() - Free the memory allocated for the decoder state
326 * @s: Decoder state allocated using xz_dec_microlzma_alloc().