Home
last modified time | relevance | path

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

/f-stack/freebsd/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);
223 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b);
236 XZ_EXTERN void xz_dec_reset(struct xz_dec *s);
243 XZ_EXTERN void xz_dec_end(struct xz_dec *s);
/f-stack/freebsd/contrib/xz-embedded/linux/lib/xz/
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_stream.c26 struct xz_dec { struct
168 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument
186 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli()
229 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block()
390 static bool check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip()
407 static enum xz_ret dec_stream_header(struct xz_dec *s) in dec_stream_header()
443 static enum xz_ret dec_stream_footer(struct xz_dec *s) in dec_stream_footer()
470 static enum xz_ret dec_block_header(struct xz_dec *s) in dec_block_header()
798 struct xz_dec *s = kmalloc(sizeof(*s), GFP_KERNEL); in xz_dec_init()
826 XZ_EXTERN void xz_dec_reset(struct xz_dec *s) in xz_dec_reset()
[all …]
H A Dxz_dec_test.c33 static struct xz_dec *state;
/f-stack/freebsd/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()
/f-stack/freebsd/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
/f-stack/freebsd/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
/f-stack/freebsd/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c258 struct xz_dec *s; in unxz()