Lines Matching refs:prob

172     CLzmaProb *prob;  in LzmaDec_DecodeReal()  local
177 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState; in LzmaDec_DecodeReal()
178 IF_BIT_0(prob) in LzmaDec_DecodeReal()
181 UPDATE_0(prob); in LzmaDec_DecodeReal()
182 prob = probs + Literal; in LzmaDec_DecodeReal()
184 prob += (LZMA_LIT_SIZE * (((processedPos & lpMask) << lc) + in LzmaDec_DecodeReal()
190 do { GET_BIT(prob + symbol, symbol) } while (symbol < 0x100); in LzmaDec_DecodeReal()
203 probLit = prob + offs + bit + symbol; in LzmaDec_DecodeReal()
217 UPDATE_1(prob); in LzmaDec_DecodeReal()
218 prob = probs + IsRep + state; in LzmaDec_DecodeReal()
219 IF_BIT_0(prob) in LzmaDec_DecodeReal()
221 UPDATE_0(prob); in LzmaDec_DecodeReal()
223 prob = probs + LenCoder; in LzmaDec_DecodeReal()
227 UPDATE_1(prob); in LzmaDec_DecodeReal()
230 prob = probs + IsRepG0 + state; in LzmaDec_DecodeReal()
231 IF_BIT_0(prob) in LzmaDec_DecodeReal()
233 UPDATE_0(prob); in LzmaDec_DecodeReal()
234 prob = probs + IsRep0Long + (state << kNumPosBitsMax) + posState; in LzmaDec_DecodeReal()
235 IF_BIT_0(prob) in LzmaDec_DecodeReal()
237 UPDATE_0(prob); in LzmaDec_DecodeReal()
244 UPDATE_1(prob); in LzmaDec_DecodeReal()
249 UPDATE_1(prob); in LzmaDec_DecodeReal()
250 prob = probs + IsRepG1 + state; in LzmaDec_DecodeReal()
251 IF_BIT_0(prob) in LzmaDec_DecodeReal()
253 UPDATE_0(prob); in LzmaDec_DecodeReal()
258 UPDATE_1(prob); in LzmaDec_DecodeReal()
259 prob = probs + IsRepG2 + state; in LzmaDec_DecodeReal()
260 IF_BIT_0(prob) in LzmaDec_DecodeReal()
262 UPDATE_0(prob); in LzmaDec_DecodeReal()
267 UPDATE_1(prob); in LzmaDec_DecodeReal()
277 prob = probs + RepLenCoder; in LzmaDec_DecodeReal()
281 CLzmaProb *probLen = prob + LenChoice; in LzmaDec_DecodeReal()
285 probLen = prob + LenLow + (posState << kLenNumLowBits); in LzmaDec_DecodeReal()
292 probLen = prob + LenChoice2; in LzmaDec_DecodeReal()
296 probLen = prob + LenMid + (posState << kLenNumMidBits); in LzmaDec_DecodeReal()
303 probLen = prob + LenHigh; in LzmaDec_DecodeReal()
315 prob = probs + PosSlot + in LzmaDec_DecodeReal()
317 TREE_6_DECODE(prob, distance); in LzmaDec_DecodeReal()
326 prob = probs + SpecPos + distance - posSlot - 1; in LzmaDec_DecodeReal()
332 GET_BIT2(prob + i, i, ; , distance |= mask); in LzmaDec_DecodeReal()
363 prob = probs + Align; in LzmaDec_DecodeReal()
367 GET_BIT2(prob + i, i, ; , distance |= 1); in LzmaDec_DecodeReal()
368 GET_BIT2(prob + i, i, ; , distance |= 2); in LzmaDec_DecodeReal()
369 GET_BIT2(prob + i, i, ; , distance |= 4); in LzmaDec_DecodeReal()
370 GET_BIT2(prob + i, i, ; , distance |= 8); in LzmaDec_DecodeReal()
516 CLzmaProb *prob; in LzmaDec_TryDummy() local
521 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState; in LzmaDec_TryDummy()
522 IF_BIT_0_CHECK(prob) in LzmaDec_TryDummy()
528 prob = probs + Literal; in LzmaDec_TryDummy() local
530 prob += (LZMA_LIT_SIZE * in LzmaDec_TryDummy()
537 do { GET_BIT_CHECK(prob + symbol, symbol) } while (symbol < 0x100); in LzmaDec_TryDummy()
551 probLit = prob + offs + bit + symbol; in LzmaDec_TryDummy()
563 prob = probs + IsRep + state; in LzmaDec_TryDummy()
564 IF_BIT_0_CHECK(prob) in LzmaDec_TryDummy()
568 prob = probs + LenCoder; in LzmaDec_TryDummy()
575 prob = probs + IsRepG0 + state; in LzmaDec_TryDummy()
576 IF_BIT_0_CHECK(prob) in LzmaDec_TryDummy()
579 prob = probs + IsRep0Long + (state << kNumPosBitsMax) + posState; in LzmaDec_TryDummy()
580 IF_BIT_0_CHECK(prob) in LzmaDec_TryDummy()
594 prob = probs + IsRepG1 + state; in LzmaDec_TryDummy()
595 IF_BIT_0_CHECK(prob) in LzmaDec_TryDummy()
602 prob = probs + IsRepG2 + state; in LzmaDec_TryDummy()
603 IF_BIT_0_CHECK(prob) in LzmaDec_TryDummy()
614 prob = probs + RepLenCoder; in LzmaDec_TryDummy()
618 CLzmaProb *probLen = prob + LenChoice; in LzmaDec_TryDummy()
622 probLen = prob + LenLow + (posState << kLenNumLowBits); in LzmaDec_TryDummy()
629 probLen = prob + LenChoice2; in LzmaDec_TryDummy()
633 probLen = prob + LenMid + (posState << kLenNumMidBits); in LzmaDec_TryDummy()
640 probLen = prob + LenHigh; in LzmaDec_TryDummy()
652 prob = probs + PosSlot + in LzmaDec_TryDummy()
655 TREE_DECODE_CHECK(prob, 1 << kNumPosSlotBits, posSlot); in LzmaDec_TryDummy()
664 prob = probs + SpecPos + ((2 | (posSlot & 1)) << numDirectBits) - posSlot - 1; in LzmaDec_TryDummy()
677 prob = probs + Align; in LzmaDec_TryDummy()
684 GET_BIT_CHECK(prob + i, i); in LzmaDec_TryDummy()