Home | History | Annotate | Download | only in C

Lines Matching refs:matchByte

586 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)

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