Home
last modified time | relevance | path

Searched refs:xz_buf (Results 1 – 10 of 10) sorted by relevance

/Linux-v5.10/drivers/base/firmware_loader/
Dmain.c384 struct xz_buf xz_buf; in fw_decompress_xz_single() local
391 xz_buf.in_size = in_size; in fw_decompress_xz_single()
392 xz_buf.in = in_buffer; in fw_decompress_xz_single()
393 xz_buf.in_pos = 0; in fw_decompress_xz_single()
394 xz_buf.out_size = fw_priv->allocated_size; in fw_decompress_xz_single()
395 xz_buf.out = fw_priv->data; in fw_decompress_xz_single()
396 xz_buf.out_pos = 0; in fw_decompress_xz_single()
398 xz_ret = xz_dec_run(xz_dec, &xz_buf); in fw_decompress_xz_single()
401 fw_priv->size = xz_buf.out_pos; in fw_decompress_xz_single()
410 struct xz_buf xz_buf; in fw_decompress_xz_pages() local
[all …]
/Linux-v5.10/include/linux/
Dxz.h136 struct xz_buf { struct
214 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b);
/Linux-v5.10/lib/xz/
Dxz_dec_stream.c157 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp()
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()
549 static enum xz_ret dec_main(struct xz_dec *s, struct xz_buf *b) in dec_main()
750 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b) in xz_dec_run()
Dxz_private.h127 struct xz_buf *b);
154 struct xz_buf *b);
Dxz_dec_lzma2.c286 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset()
374 static void dict_uncompressed(struct dictionary *dict, struct xz_buf *b, in dict_uncompressed()
416 static uint32_t dict_flush(struct dictionary *dict, struct xz_buf *b) in dict_flush()
449 static bool rc_read_init(struct rc_dec *rc, struct xz_buf *b) in rc_read_init()
846 static bool lzma2_lzma(struct xz_dec_lzma2 *s, struct xz_buf *b) in lzma2_lzma()
932 struct xz_buf *b) in xz_dec_lzma2_run()
Dxz_dec_test.c52 static struct xz_buf buffers = {
Dxz_dec_bcj.c399 static void bcj_flush(struct xz_dec_bcj *s, struct xz_buf *b) in bcj_flush()
419 struct xz_buf *b) in xz_dec_bcj_run()
/Linux-v5.10/drivers/net/ethernet/mellanox/mlxfw/
Dmlxfw_mfa2.c390 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-v5.10/fs/squashfs/
Dxz_wrapper.c26 struct xz_buf buf;
/Linux-v5.10/lib/
Ddecompress_unxz.c257 struct xz_buf b; in unxz()