Home | History | Annotate | Download | only in lzma_sdk

Lines Matching refs:curByte

936   Byte curByte, matchByte;
998 curByte = *data;
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1015 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1016 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1024 if (matchByte == curByte)
1129 Byte curByte, matchByte;
1218 curByte = *data;
1228 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1229 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1245 if (matchByte == curByte && !(nextOpt->posPrev < cur && nextOpt->backPrev == 0))
1267 if (!nextIsChar && matchByte != curByte) /* speed optimization */
1752 Byte curByte;
1758 curByte = p->matchFinder.GetIndexByte(p->matchFinderObj, 0 - p->additionalOffset);
1759 LitEnc_Encode(&p->rc, p->litProbs, curByte);
1781 Byte curByte;
1787 curByte = *data;
1790 LitEnc_Encode(&p->rc, probs, curByte);
1792 LitEnc_EncodeMatched(&p->rc, probs, curByte, *(data - p->reps[0] - 1));