Searched refs:xz_dec (Results 1 – 10 of 10) sorted by relevance
/linux-6.1.9/include/linux/ |
D | xz.h | 149 struct xz_dec; 194 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max); 214 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b); 227 XZ_EXTERN void xz_dec_reset(struct xz_dec *s); 234 XZ_EXTERN void xz_dec_end(struct xz_dec *s);
|
/linux-6.1.9/lib/xz/ |
D | xz_dec_stream.c | 20 struct xz_dec { struct 157 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument 175 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli() 218 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block() 281 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update() 296 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index() 346 static enum xz_ret crc32_validate(struct xz_dec *s, struct xz_buf *b) in crc32_validate() 370 static bool check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip() 387 static enum xz_ret dec_stream_header(struct xz_dec *s) in dec_stream_header() 422 static enum xz_ret dec_stream_footer(struct xz_dec *s) in dec_stream_footer() [all …]
|
D | Makefile | 2 obj-$(CONFIG_XZ_DEC) += xz_dec.o 3 xz_dec-y := xz_dec_syms.o xz_dec_stream.o xz_dec_lzma2.o 4 xz_dec-$(CONFIG_XZ_DEC_BCJ) += xz_dec_bcj.o
|
D | xz_dec_test.c | 33 static struct xz_dec *state;
|
/linux-6.1.9/drivers/net/ethernet/mellanox/mlxfw/ |
D | mlxfw_mfa2.c | 390 static int mlxfw_mfa2_xz_dec_run(struct xz_dec *xz_dec, struct xz_buf *xz_buf, in mlxfw_mfa2_xz_dec_run() argument 395 xz_ret = xz_dec_run(xz_dec, xz_buf); in mlxfw_mfa2_xz_dec_run() 428 struct xz_dec *xz_dec; in mlxfw_mfa2_file_cb_offset_xz() local 434 xz_dec = xz_dec_init(XZ_DYNALLOC, (u32) -1); in mlxfw_mfa2_file_cb_offset_xz() 435 if (!xz_dec) in mlxfw_mfa2_file_cb_offset_xz() 450 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished); in mlxfw_mfa2_file_cb_offset_xz() 464 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished); in mlxfw_mfa2_file_cb_offset_xz() 466 xz_dec_end(xz_dec); in mlxfw_mfa2_file_cb_offset_xz()
|
/linux-6.1.9/kernel/module/ |
D | decompress.c | 153 struct xz_dec *xz_dec; in module_xz_decompress() local 165 xz_dec = xz_dec_init(XZ_DYNALLOC, (u32)-1); in module_xz_decompress() 166 if (!xz_dec) in module_xz_decompress() 184 xz_ret = xz_dec_run(xz_dec, &xz_buf); in module_xz_decompress() 199 xz_dec_end(xz_dec); in module_xz_decompress()
|
/linux-6.1.9/drivers/base/firmware_loader/ |
D | main.c | 388 struct xz_dec *xz_dec; in fw_decompress_xz_single() local 392 xz_dec = xz_dec_init(XZ_SINGLE, (u32)-1); in fw_decompress_xz_single() 393 if (!xz_dec) in fw_decompress_xz_single() 403 xz_ret = xz_dec_run(xz_dec, &xz_buf); in fw_decompress_xz_single() 404 xz_dec_end(xz_dec); in fw_decompress_xz_single() 414 struct xz_dec *xz_dec; in fw_decompress_xz_pages() local 420 xz_dec = xz_dec_init(XZ_DYNALLOC, (u32)-1); in fw_decompress_xz_pages() 421 if (!xz_dec) in fw_decompress_xz_pages() 441 xz_ret = xz_dec_run(xz_dec, &xz_buf); in fw_decompress_xz_pages() 454 xz_dec_end(xz_dec); in fw_decompress_xz_pages()
|
/linux-6.1.9/Documentation/staging/ |
D | xz.rst | 28 The xz_dec module provides XZ decompressor with single-call (buffer 29 to buffer) and multi-call (stateful) APIs. The usage of the xz_dec 32 The xz_dec_test module is for testing xz_dec. xz_dec_test is not
|
/linux-6.1.9/fs/squashfs/ |
D | xz_wrapper.c | 25 struct xz_dec *state;
|
/linux-6.1.9/lib/ |
D | decompress_unxz.c | 258 struct xz_dec *s; in unxz()
|