Lines Matching refs:matchByte
586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) in LitEnc_EncodeMatched() argument
592 matchByte <<= 1; in LitEnc_EncodeMatched()
593 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1); in LitEnc_EncodeMatched()
595 offs &= ~(matchByte ^ symbol); in LitEnc_EncodeMatched()
649 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt3… in LitEnc_GetPriceMatched() argument
656 matchByte <<= 1; in LitEnc_GetPriceMatched()
657 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1); in LitEnc_GetPriceMatched()
659 offs &= ~(matchByte ^ symbol); in LitEnc_GetPriceMatched()
936 Byte curByte, matchByte; in GetOptimum() local
999 matchByte = *(data - (reps[0] + 1)); in GetOptimum()
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2) in GetOptimum()
1015 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1024 if (matchByte == curByte) in GetOptimum()
1129 Byte curByte, matchByte; in GetOptimum() local
1219 matchByte = *(data - (reps[0] + 1)); in GetOptimum()
1228 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1245 if (matchByte == curByte && !(nextOpt->posPrev < cur && nextOpt->backPrev == 0)) in GetOptimum()
1267 if (!nextIsChar && matchByte != curByte) /* speed optimization */ in GetOptimum()