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

/external/lzma/xz-embedded/
H A Dxz.h52 * or XZ_DEC_DYNALLOC. The xz_dec kernel module is always compiled
151 * struct xz_dec - Opaque type to hold the XZ decoder state
153 struct xz_dec;
194 * On success, xz_dec_init() returns a pointer to struct xz_dec, which is
198 XZ_EXTERN struct xz_dec *xz_dec_init(enum xz_mode mode, uint32_t dict_max);
218 XZ_EXTERN enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b);
231 XZ_EXTERN void xz_dec_reset(struct xz_dec *s);
238 XZ_EXTERN void xz_dec_end(struct xz_dec *s);
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...]

Completed in 350 milliseconds