Lines Matching defs:lzma_dec
132 struct lzma_dec { struct
134 uint32_t rep0;
135 uint32_t rep1;
136 uint32_t rep2;
137 uint32_t rep3;
140 enum lzma_state state;
146 uint32_t len;
154 uint32_t lc;
155 uint32_t literal_pos_mask; /* (1 << lp) - 1 */
156 uint32_t pos_mask; /* (1 << pb) - 1 */
159 uint16_t is_match[STATES][POS_STATES_MAX];
162 uint16_t is_rep[STATES];
168 uint16_t is_rep0[STATES];
174 uint16_t is_rep1[STATES];
177 uint16_t is_rep2[STATES];
183 uint16_t is_rep0_long[STATES][POS_STATES_MAX];
190 uint16_t dist_slot[DIST_STATES][DIST_SLOTS];
196 uint16_t dist_special[FULL_DISTANCES - DIST_MODEL_END];
202 uint16_t dist_align[ALIGN_SIZE];
205 struct lzma_len_dec match_len_dec;
208 struct lzma_len_dec rep_len_dec;
211 uint16_t literal[LITERAL_CODERS_MAX][LITERAL_CODER_SIZE];