Searched refs:xz_dec (Results 1 – 10 of 10) sorted by relevance
158 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);
1 obj-$(CONFIG_XZ_DEC) += xz_dec.o2 xz_dec-y := xz_dec_syms.o xz_dec_stream.o xz_dec_lzma2.o3 xz_dec-$(CONFIG_XZ_DEC_BCJ) += xz_dec_bcj.o
26 struct xz_dec { struct168 static bool fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument186 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 …]
33 static struct xz_dec *state;
23 struct xz_dec *s; in main()
28 struct xz_dec *s; in main()
22 struct xz_dec *s; in main()
26 The xz_dec module provides XZ decompressor with single-call (buffer27 to buffer) and multi-call (stateful) APIs. The usage of the xz_dec30 The xz_dec_test module is for testing xz_dec. xz_dec_test is not
20 The xz_dec module depends on crc32 module, so make sure that you have23 Building the xz_dec and xz_dec_test modules without support for BCJ31 Building the xz_dec and xz_dec_test modules with support for BCJ
258 struct xz_dec *s; in unxz()