• Home
  • Raw
  • Download

Lines Matching refs:xz_dec

103 struct xz_dec;
127 struct xz_dec *xz_dec_init(uint32_t dict_max);
147 enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b);
160 void xz_dec_reset(struct xz_dec *s);
167 void xz_dec_end(struct xz_dec *s);
199 struct xz_dec *s; in do_xzcat()
2352 struct xz_dec { struct
2484 static int fill_temp(struct xz_dec *s, struct xz_buf *b) in fill_temp() argument
2501 static enum xz_ret dec_vli(struct xz_dec *s, const uint8_t *in, in dec_vli()
2544 static enum xz_ret dec_block(struct xz_dec *s, struct xz_buf *b) in dec_block()
2611 static void index_update(struct xz_dec *s, const struct xz_buf *b) in index_update()
2626 static enum xz_ret dec_index(struct xz_dec *s, struct xz_buf *b) in dec_index()
2677 static enum xz_ret crc_validate(struct xz_dec *s, struct xz_buf *b, in crc_validate()
2701 static int check_skip(struct xz_dec *s, struct xz_buf *b) in check_skip()
2716 static enum xz_ret dec_stream_header(struct xz_dec *s) in dec_stream_header()
2747 static enum xz_ret dec_stream_footer(struct xz_dec *s) in dec_stream_footer()
2774 static enum xz_ret dec_block_header(struct xz_dec *s) in dec_block_header()
2874 static enum xz_ret dec_main(struct xz_dec *s, struct xz_buf *b) in dec_main()
3062 enum xz_ret xz_dec_run(struct xz_dec *s, struct xz_buf *b) in xz_dec_run()
3084 struct xz_dec *xz_dec_init(uint32_t dict_max) in xz_dec_init()
3086 struct xz_dec *s = malloc(sizeof(*s)); in xz_dec_init()
3112 void xz_dec_reset(struct xz_dec *s) in xz_dec_reset()
3124 void xz_dec_end(struct xz_dec *s) in xz_dec_end()