Lines Matching refs:matchByte
709 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 sym, UInt32 matchByte) in LitEnc_EncodeMatched() argument
719 matchByte <<= 1; in LitEnc_EncodeMatched()
721 prob = probs + (offs + (matchByte & offs) + (sym >> 8)); in LitEnc_EncodeMatched()
724 offs &= ~(matchByte ^ sym); in LitEnc_EncodeMatched()
786 static UInt32 LitEnc_Matched_GetPrice(const CLzmaProb *probs, UInt32 sym, UInt32 matchByte, const C… in LitEnc_Matched_GetPrice() argument
793 matchByte <<= 1; in LitEnc_Matched_GetPrice()
794 price += GET_PRICEa(probs[offs + (matchByte & offs) + (sym >> 8)], (sym >> 7) & 1); in LitEnc_Matched_GetPrice()
796 offs &= ~(matchByte ^ sym); in LitEnc_Matched_GetPrice()
1130 Byte curByte, matchByte; in GetOptimum() local
1191 matchByte = *(data - reps[0]); in GetOptimum()
1197 if (last < 2 && curByte != matchByte) in GetOptimum()
1211 LitEnc_Matched_GetPrice(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1221 if (matchByte == curByte && repLens[0] == 0) in GetOptimum()
1344 Byte curByte, matchByte; in GetOptimum() local
1475 matchByte = *(data - reps[0]); in GetOptimum()
1502 && matchByte == curByte in GetOptimum()
1510 LitEnc_Matched_GetPrice(probs, curByte, matchByte, p->ProbPrices) : in GetOptimum()
1534 if (matchByte == curByte) in GetOptimum()
1566 && matchByte != curByte in GetOptimum()