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