Searched refs:numDirectBits (Results 1 - 4 of 4) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java276 int numDirectBits = (posSlot >> 1) - 1;
277 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
280 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
284 numDirectBits - Base.kNumAlignBits) << Base.kNumAlignBits);
/external/lzma/C/
H A DLzmaDec.c335 int numDirectBits = (int)(((distance >> 1) - 1)); local
339 distance <<= numDirectBits; local
349 while (--numDirectBits != 0);
354 numDirectBits -= kNumAlignBits;
376 while (--numDirectBits != 0);
672 int numDirectBits = ((posSlot >> 1) - 1); local
678 prob = probs + SpecPos + ((2 | (posSlot & 1)) << numDirectBits) - posSlot - 1;
682 numDirectBits -= kNumAlignBits;
690 while (--numDirectBits != 0);
692 numDirectBits
[all...]
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs318 int numDirectBits = (int)((posSlot >> 1) - 1);
319 rep0 = ((2 | (posSlot & 1)) << numDirectBits);
322 rep0 - posSlot - 1, m_RangeDecoder, numDirectBits);
326 numDirectBits - Base.kNumAlignBits) << Base.kNumAlignBits);
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
H A DLzmaSpec.cpp423 unsigned numDirectBits = (unsigned)((posSlot >> 1) - 1); local
424 UInt32 dist = ((2 | (posSlot & 1)) << numDirectBits);
426 dist += BitTreeReverseDecode(PosDecoders + dist - posSlot, numDirectBits, &RangeDec);
429 dist += RangeDec.DecodeDirectBits(numDirectBits - kNumAlignBits) << kNumAlignBits;

Completed in 89 milliseconds