Home
last modified time | relevance | path

Searched refs:xz_dec (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/contrib/xz-embedded/linux/include/linux/
H A Dxz.h158 struct xz_dec;
203 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max);
228 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b);
264 XZ_EXTERN enum xz_ret xz_dec_catrun(struct xz_dec *s, struct xz_buf *b,
278 XZ_EXTERN void xz_dec_reset(struct xz_dec *s);
285 XZ_EXTERN void xz_dec_end(struct xz_dec *s);
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_stream.c26 struct xz_dec { struct
169 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument
187 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli()
230 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block()
300 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update()
315 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index()
366 static enum xz_ret crc_validate(struct xz_dec *s, struct xz_buf *b, in crc_validate()
391 static bool check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip()
408 static enum xz_ret dec_stream_header(struct xz_dec *s) in dec_stream_header()
444 static enum xz_ret dec_stream_footer(struct xz_dec *s) in dec_stream_footer()
[all …]
H A DMakefile1 obj-$(CONFIG_XZ_DEC) += xz_dec.o
2 xz_dec-y := xz_dec_syms.o xz_dec_stream.o xz_dec_lzma2.o
3 xz_dec-$(CONFIG_XZ_DEC_BCJ) += xz_dec_bcj.o
H A Dxz_dec_test.c33 static struct xz_dec *state;
/freebsd/sys/dev/mlxfw/
H A Dmlxfw_mfa2.c418 static int mlxfw_mfa2_xz_dec_run(struct xz_dec *xz_dec, struct xz_buf *xz_buf, in mlxfw_mfa2_xz_dec_run() argument
423 xz_ret = xz_dec_run(xz_dec, xz_buf); in mlxfw_mfa2_xz_dec_run()
456 struct xz_dec *xz_dec; in mlxfw_mfa2_file_cb_offset_xz() local
462 xz_dec = xz_dec_init(XZ_DYNALLOC, (u32) -1); in mlxfw_mfa2_file_cb_offset_xz()
463 if (!xz_dec) in mlxfw_mfa2_file_cb_offset_xz()
478 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished); in mlxfw_mfa2_file_cb_offset_xz()
492 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished); in mlxfw_mfa2_file_cb_offset_xz()
494 xz_dec_end(xz_dec); in mlxfw_mfa2_file_cb_offset_xz()
/freebsd/sys/contrib/xz-embedded/userspace/
H A Dbuftest.c23 struct xz_dec *s; in main()
H A Dxzminidec.c28 struct xz_dec *s; in main()
H A Dbytetest.c22 struct xz_dec *s; in main()
/freebsd/sys/contrib/xz-embedded/linux/Documentation/
H A Dxz.txt26 The xz_dec module provides XZ decompressor with single-call (buffer
27 to buffer) and multi-call (stateful) APIs. The usage of the xz_dec
30 The xz_dec_test module is for testing xz_dec. xz_dec_test is not
/freebsd/sys/geom/uzip/
H A Dg_uzip_lzma.c45 struct xz_dec *s;
/freebsd/sys/contrib/xz-embedded/
H A DREADME20 The xz_dec module depends on crc32 module, so make sure that you have
23 Building the xz_dec and xz_dec_test modules without support for BCJ
31 Building the xz_dec and xz_dec_test modules with support for BCJ
/freebsd/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c258 struct xz_dec *s; in unxz()