Searched refs:xz_buf (Results 1 – 12 of 12) sorted by relevance
/linux-6.12.1/kernel/module/ |
D | decompress.c | 154 struct xz_buf xz_buf; in module_xz_decompress() local 169 xz_buf.in_size = size; in module_xz_decompress() 170 xz_buf.in = buf; in module_xz_decompress() 171 xz_buf.in_pos = 0; in module_xz_decompress() 181 xz_buf.out = kmap_local_page(page); in module_xz_decompress() 182 xz_buf.out_pos = 0; in module_xz_decompress() 183 xz_buf.out_size = PAGE_SIZE; in module_xz_decompress() 184 xz_ret = xz_dec_run(xz_dec, &xz_buf); in module_xz_decompress() 185 kunmap_local(xz_buf.out); in module_xz_decompress() 187 new_size += xz_buf.out_pos; in module_xz_decompress() [all …]
|
/linux-6.12.1/drivers/base/firmware_loader/ |
D | main.c | 390 struct xz_buf xz_buf; in fw_decompress_xz_single() local 397 xz_buf.in_size = in_size; in fw_decompress_xz_single() 398 xz_buf.in = in_buffer; in fw_decompress_xz_single() 399 xz_buf.in_pos = 0; in fw_decompress_xz_single() 400 xz_buf.out_size = fw_priv->allocated_size; in fw_decompress_xz_single() 401 xz_buf.out = fw_priv->data; in fw_decompress_xz_single() 402 xz_buf.out_pos = 0; in fw_decompress_xz_single() 404 xz_ret = xz_dec_run(xz_dec, &xz_buf); in fw_decompress_xz_single() 407 fw_priv->size = xz_buf.out_pos; in fw_decompress_xz_single() 416 struct xz_buf xz_buf; in fw_decompress_xz_pages() local [all …]
|
/linux-6.12.1/include/linux/ |
D | xz.h | 130 struct xz_buf { struct 208 enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b); 322 enum xz_ret xz_dec_microlzma_run(struct xz_dec_microlzma *s, struct xz_buf *b);
|
/linux-6.12.1/lib/xz/ |
D | xz_dec_stream.c | 156 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() 217 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block() 280 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update() 295 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index() 345 static enum xz_ret crc32_validate(struct xz_dec *s, struct xz_buf *b) in crc32_validate() 369 static bool check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip() 548 static enum xz_ret dec_main(struct xz_dec *s, struct xz_buf *b) in dec_main() 749 enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b) in xz_dec_run()
|
D | xz_private.h | 129 enum xz_ret xz_dec_lzma2_run(struct xz_dec_lzma2 *s, struct xz_buf *b); 155 struct xz_buf *b);
|
D | xz_dec_lzma2.c | 289 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset() 377 static void dict_uncompressed(struct dictionary *dict, struct xz_buf *b, in dict_uncompressed() 436 static uint32_t dict_flush(struct dictionary *dict, struct xz_buf *b) in dict_flush() 480 static bool rc_read_init(struct rc_dec *rc, struct xz_buf *b) in rc_read_init() 878 static bool lzma2_lzma(struct xz_dec_lzma2 *s, struct xz_buf *b) in lzma2_lzma() 963 enum xz_ret xz_dec_lzma2_run(struct xz_dec_lzma2 *s, struct xz_buf *b) in xz_dec_lzma2_run() 1213 struct xz_buf *b) in xz_dec_microlzma_run()
|
D | xz_dec_test.c | 51 static struct xz_buf buffers = {
|
D | xz_dec_bcj.c | 557 static void bcj_flush(struct xz_dec_bcj *s, struct xz_buf *b) in bcj_flush() 576 struct xz_buf *b) in xz_dec_bcj_run()
|
/linux-6.12.1/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() 429 struct xz_buf dec_buf; in mlxfw_mfa2_file_cb_offset_xz()
|
/linux-6.12.1/fs/squashfs/ |
D | xz_wrapper.c | 26 struct xz_buf buf;
|
/linux-6.12.1/lib/ |
D | decompress_unxz.c | 264 struct xz_buf b; in unxz()
|
/linux-6.12.1/fs/erofs/ |
D | decompressor_lzma.c | 160 struct xz_buf buf = {}; in z_erofs_lzma_decompress()
|