HomeSort by relevance Sort by last modified time
    Searched defs:matchByte (Results 1 - 10 of 10) sorted by null

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMADecoder.java 165 int matchByte = lz.getByte(reps[0]);
171 matchByte <<= 1;
172 matchBit = matchByte & offset;
LZMAEncoderNormal.java 163 int matchByte = lz.getByte(reps[0] + 1);
168 if (mainLen < MATCH_LEN_MIN && curByte != matchByte
179 int literalPrice = literalEncoder.getPrice(curByte, matchByte,
189 if (matchByte == curByte) {
377 int matchByte = lz.getByte(opts[optCur].reps[0] + 1);
381 + literalEncoder.getPrice(curByte, matchByte, lz.getByte(1),
389 if (matchByte == curByte && (opts[optCur + 1].optPrev == optCur
402 if (!nextIsByte && matchByte != curByte && avail > MATCH_LEN_MIN) {
466 int matchByte = lz.getByte(0); // lz.getByte(len, len)
468 price += literalEncoder.getPrice(curByte, matchByte, prevByte
    [all...]
LZMAEncoder.java 527 int getPrice(int curByte, int matchByte,
535 : subencoders[i].getMatchedPrice(curByte, matchByte);
556 int matchByte = lz.getByte(reps[0] + 1 + readAhead);
563 matchByte <<= 1;
564 matchBit = matchByte & offset;
569 offset &= ~(matchByte ^ symbol);
594 int getMatchedPrice(int symbol, int matchByte) {
604 matchByte <<= 1;
605 matchBit = matchByte & offset;
611 offset &= ~(matchByte ^ symbol)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.c 183 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
190 matchByte <<= 1;
191 bit = (matchByte & offs);
530 unsigned matchByte = p->dic[p->dicPos - p->reps[0] +
538 matchByte <<= 1;
539 bit = (matchByte & offs);
LzmaEnc.c 620 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)
626 matchByte <<= 1;
627 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
629 offs &= ~(matchByte ^ symbol);
683 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices)
690 matchByte <<= 1;
691 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
693 offs &= ~(matchByte ^ symbol);
970 Byte curByte, matchByte;
1033 matchByte = *(data - (reps[0] + 1));
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.c 202 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
209 matchByte <<= 1;
210 bit = (matchByte & offs);
549 unsigned matchByte = p->dic[p->dicPos - p->reps[0] +
557 matchByte <<= 1;
558 bit = (matchByte & offs);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.c 202 unsigned matchByte = p->dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
209 matchByte <<= 1;
210 bit = (matchByte & offs);
549 unsigned matchByte = p->dic[p->dicPos - p->reps[0] +
557 matchByte <<= 1;
558 bit = (matchByte & offs);
  /external/lzma/C/
LzmaDec.c 51 matchByte <<= 1; \
52 bit = (matchByte & offs); \
198 unsigned matchByte = dic[(dicPos - rep0) + ((dicPos < rep0) ? dicBufSize : 0)];
555 unsigned matchByte = p->dic[p->dicPos - p->reps[0] +
563 matchByte <<= 1;
564 bit = (matchByte & offs);
LzmaEnc.c 596 static void LitEnc_EncodeMatched(CRangeEnc *p, CLzmaProb *probs, UInt32 symbol, UInt32 matchByte)
602 matchByte <<= 1;
603 RangeEnc_EncodeBit(p, probs + (offs + (matchByte & offs) + (symbol >> 8)), (symbol >> 7) & 1);
605 offs &= ~(matchByte ^ symbol);
659 static UInt32 LitEnc_GetPriceMatched(const CLzmaProb *probs, UInt32 symbol, UInt32 matchByte, UInt32 *ProbPrices)
666 matchByte <<= 1;
667 price += GET_PRICEa(probs[offs + (matchByte & offs) + (symbol >> 8)], (symbol >> 7) & 1);
669 offs &= ~(matchByte ^ symbol);
949 Byte curByte, matchByte;
1012 matchByte = *(data - (reps[0] + 1));
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 384 unsigned matchByte = OutWindow.GetByte(rep0 + 1);
387 unsigned matchBit = (matchByte >> 7) & 1;
388 matchByte <<= 1;

Completed in 1260 milliseconds