Lines Matching defs:decompressor
3 * lzx_decompress.c - A decompressor for the LZX compression format, which can
72 * used in cabinet files this value must be given to the decompressor, whereas
170 * match/literal decoding, the decompressor must undo the translation.
569 * lzx_allocate_decompressor - Allocate an LZX decompressor
571 * Return the pointer to the decompressor on success, or return NULL and set
582 * @decompressor: A decompressor allocated with lzx_allocate_decompressor()
590 int lzx_decompress(struct lzx_decompressor *decompressor,
594 struct lzx_decompressor *d = decompressor;
662 * lzx_free_decompressor - Free an LZX decompressor
664 * @decompressor: A decompressor that was allocated with
667 void lzx_free_decompressor(struct lzx_decompressor *decompressor)
669 kfree(decompressor);