Lines Matching +full:s +full:- +full:mode
56 /* If no specific decoding mode is requested, enable support for all modes. */
65 * The DEC_IS_foo(mode) macros are used in "if" statements. If only some
70 # define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE) argument
72 # define DEC_IS_SINGLE(mode) (false) argument
76 # define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC) argument
78 # define DEC_IS_PREALLOC(mode) (false) argument
82 # define DEC_IS_DYNALLOC(mode) ((mode) == XZ_DYNALLOC) argument
84 # define DEC_IS_DYNALLOC(mode) (false) argument
88 # define DEC_IS_MULTI(mode) (true) argument
90 # define DEC_IS_MULTI(mode) ((mode) != XZ_SINGLE) argument
92 # define DEC_IS_MULTI(mode) (false) argument
116 XZ_EXTERN struct xz_dec_lzma2 *xz_dec_lzma2_create(enum xz_mode mode,
125 XZ_EXTERN enum xz_ret xz_dec_lzma2_reset(struct xz_dec_lzma2 *s,
128 /* Decode raw LZMA2 stream from b->in to b->out. */
129 XZ_EXTERN enum xz_ret xz_dec_lzma2_run(struct xz_dec_lzma2 *s,
133 XZ_EXTERN void xz_dec_lzma2_end(struct xz_dec_lzma2 *s);
148 XZ_EXTERN enum xz_ret xz_dec_bcj_reset(struct xz_dec_bcj *s, uint8_t id);
155 XZ_EXTERN enum xz_ret xz_dec_bcj_run(struct xz_dec_bcj *s,
160 #define xz_dec_bcj_end(s) kfree(s) argument