Home
last modified time | relevance | path

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

/NextBSD/sys/contrib/xz-embedded/linux/include/linux/
HDxz.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);
/NextBSD/sys/contrib/xz-embedded/linux/lib/xz/
HDxz_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()
299 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update()
314 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index()
365 static enum xz_ret crc_validate(struct xz_dec *s, struct xz_buf *b, in crc_validate()
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()
[all …]
HDMakefile1 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
HDxz_dec_test.c33 static struct xz_dec *state;
/NextBSD/sys/contrib/xz-embedded/userspace/
HDbuftest.c23 struct xz_dec *s; in main()
HDxzminidec.c28 struct xz_dec *s; in main()
HDbytetest.c22 struct xz_dec *s; in main()
/NextBSD/sys/contrib/xz-embedded/linux/Documentation/
HDxz.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
/NextBSD/sys/contrib/xz-embedded/
HDREADME20 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
/NextBSD/sys/contrib/xz-embedded/linux/lib/
HDdecompress_unxz.c258 struct xz_dec *s; in unxz()
/NextBSD/sys/geom/uncompress/
HDg_uncompress.c105 struct xz_dec *s;