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

/freebsd-11-stable/sys/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)
186 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in,
229 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b)
299 static void index_update(struct xz_dec *s, const struct xz_buf *b)
314 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b)
365 static enum xz_ret crc_validate(struct xz_dec *s, struct xz_buf *b,
390 static bool check_skip(struct xz_dec *s, struct xz_buf *b)
407 static enum xz_ret dec_stream_header(struct xz_dec *s)
443 static enum xz_ret dec_stream_footer(struct xz_dec *
[all...]
H A Dxz_dec_test.c33 static struct xz_dec *state;
/freebsd-11-stable/sys/contrib/xz-embedded/linux/include/linux/
H A Dxz.h57 * or XZ_DEC_DYNALLOC. The xz_dec kernel module is always compiled
156 * struct xz_dec - Opaque type to hold the XZ decoder state
158 struct xz_dec;
199 * On success, xz_dec_init() returns a pointer to struct xz_dec, which is
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);
/freebsd-11-stable/sys/contrib/xz-embedded/userspace/
H A Dbuftest.c23 struct xz_dec *s;
H A Dbytetest.c22 struct xz_dec *s;
H A Dxzminidec.c28 struct xz_dec *s;
/freebsd-11-stable/sys/dev/mlxfw/
H A Dmlxfw_mfa2.c420 static int mlxfw_mfa2_xz_dec_run(struct xz_dec *xz_dec, struct xz_buf *xz_buf, argument
425 xz_ret = xz_dec_run(xz_dec, xz_buf);
458 struct xz_dec *xz_dec; local
464 xz_dec = xz_dec_init(XZ_DYNALLOC, (u32) -1);
465 if (!xz_dec)
480 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished);
494 err = mlxfw_mfa2_xz_dec_run(xz_dec, &dec_buf, &finished);
496 xz_dec_end(xz_dec);
[all...]
/freebsd-11-stable/sys/geom/uzip/
H A Dg_uzip_lzma.c48 struct xz_dec *s;
/freebsd-11-stable/sys/contrib/xz-embedded/linux/lib/
H A Ddecompress_unxz.c258 struct xz_dec *s;

Completed in 204 milliseconds