Home | History | Annotate | Download | only in C

Lines Matching refs:curByte

995   Byte curByte, matchByte;

1058 curByte = *data;
1061 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1075 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1076 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1084 if (matchByte == curByte)
1192 Byte curByte, matchByte;
1281 curByte = *data;
1291 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1292 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1308 if (matchByte == curByte && !(nextOpt->posPrev < cur && nextOpt->backPrev == 0))
1330 if (!nextIsChar && matchByte != curByte) /* speed optimization */
1818 Byte curByte;
1824 curByte = *(p->matchFinder.GetPointerToCurrentPos(p->matchFinderObj) - p->additionalOffset);
1825 LitEnc_Encode(&p->rc, p->litProbs, curByte);
1847 Byte curByte;
1853 curByte = *data;
1856 LitEnc_Encode(&p->rc, probs, curByte);
1858 LitEnc_EncodeMatched(&p->rc, probs, curByte, *(data - p->reps[0] - 1));