Lines Matching refs:matchByte
596 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) in LitEnc_EncodeMatched() argument
602 matchByte <<= 1; in LitEnc_EncodeMatched()
603 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1); in LitEnc_EncodeMatched()
605 offs &= ~(matchByte ^ symbol); in LitEnc_EncodeMatched()
659 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt3… in LitEnc_GetPriceMatched() argument
666 matchByte <<= 1; in LitEnc_GetPriceMatched()
667 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1); in LitEnc_GetPriceMatched()
669 offs &= ~(matchByte ^ symbol); in LitEnc_GetPriceMatched()
949 Byte curByte, matchByte; in GetOptimum() local
1012 matchByte = *(data - (reps[0] + 1)); in GetOptimum()
1014 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2) in GetOptimum()
1028 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1037 if (matchByte == curByte) in GetOptimum()
1142 Byte curByte, matchByte; in GetOptimum() local
1232 matchByte = *(data - (reps[0] + 1)); in GetOptimum()
1241 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1258 if (matchByte == curByte && !(nextOpt->posPrev < cur && nextOpt->backPrev == 0)) in GetOptimum()
1280 if (!nextIsChar && matchByte != curByte) /* speed optimization */ in GetOptimum()