Lines Matching defs:lzma_dec
131 struct lzma_dec { struct
133 uint32_t rep0;
134 uint32_t rep1;
135 uint32_t rep2;
136 uint32_t rep3;
139 enum lzma_state state;
145 uint32_t len;
153 uint32_t lc;
154 uint32_t literal_pos_mask; /* (1 << lp) - 1 */
155 uint32_t pos_mask; /* (1 << pb) - 1 */
158 uint16_t is_match[STATES][POS_STATES_MAX];
161 uint16_t is_rep[STATES];
167 uint16_t is_rep0[STATES];
173 uint16_t is_rep1[STATES];
176 uint16_t is_rep2[STATES];
182 uint16_t is_rep0_long[STATES][POS_STATES_MAX];
189 uint16_t dist_slot[DIST_STATES][DIST_SLOTS];
195 uint16_t dist_special[FULL_DISTANCES - DIST_MODEL_END];
201 uint16_t dist_align[ALIGN_SIZE];
204 struct lzma_len_dec match_len_dec;
207 struct lzma_len_dec rep_len_dec;
210 uint16_t literal[LITERAL_CODERS_MAX][LITERAL_CODER_SIZE];