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

/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A DLzmaDec.c211 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)]; local
218 matchByte <<= 1;
219 bit = (matchByte & offs);
558 unsigned matchByte = p->dic[p->dicPos - p->reps[0] + local
566 matchByte <<= 1;
567 bit = (matchByte & offs);
H A DLzmaEnc.c632 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte) argument
638 matchByte <<= 1;
639 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
641 offs &= ~(matchByte ^ symbol);
695 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices) argument
702 matchByte <<= 1;
703 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
705 offs &= ~(matchByte ^ symbol);
986 Byte currentByte, matchByte; local
1059 matchByte
1193 Byte currentByte, matchByte; local
[all...]

Completed in 31 milliseconds