Lines Matching defs:lzma_dec
1294 struct lzma_dec { struct
1296 uint32_t rep0;
1297 uint32_t rep1;
1298 uint32_t rep2;
1299 uint32_t rep3;
1302 enum lzma_state state;
1308 uint32_t len;
1316 uint32_t lc;
1317 uint32_t literal_pos_mask; /* (1 << lp) - 1 */
1318 uint32_t pos_mask; /* (1 << pb) - 1 */
1321 uint16_t is_match[STATES][POS_STATES_MAX];
1324 uint16_t is_rep[STATES];
1330 uint16_t is_rep0[STATES];
1336 uint16_t is_rep1[STATES];
1339 uint16_t is_rep2[STATES];
1345 uint16_t is_rep0_long[STATES][POS_STATES_MAX];
1352 uint16_t dist_slot[DIST_STATES][DIST_SLOTS];
1358 uint16_t dist_special[FULL_DISTANCES - DIST_MODEL_END];
1364 uint16_t dist_align[ALIGN_SIZE];
1367 struct lzma_len_dec match_len_dec;
1370 struct lzma_len_dec rep_len_dec;
1373 uint16_t literal[LITERAL_CODERS_MAX][LITERAL_CODER_SIZE];