Searched defs:matchByte (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzmaDec.c194 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)]; local
201 matchByte <<= 1;
202 bit = (matchByte & offs);
541 unsigned matchByte = p->dic[p->dicPos - p->reps[0] + local
549 matchByte <<= 1;
550 bit = (matchByte & offs);
H A DLzmaEnc.c606 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
612 matchByte <<= 1;
613 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
615 offs &= ~(matchByte ^ symbol);
669 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
676 matchByte <<= 1;
677 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
679 offs &= ~(matchByte ^ symbol);
956 Byte curByte, matchByte; local
1019 matchByte
1149 Byte curByte, matchByte; local
[all...]

Completed in 67 milliseconds