Searched refs:DecodeBit (Results 1 - 8 of 8) sorted by relevance

/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DBitTreeDecoder.java23 m = (m << 1) + rangeDecoder.DecodeBit(Models, m);
33 int bit = rangeDecoder.DecodeBit(Models, m);
48 int bit = rangeDecoder.DecodeBit(Models, startIndex + m);
H A DDecoder.java54 public int DecodeBit(short []probs, int index) throws IOException method in class:Decoder
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java40 if (rangeDecoder.DecodeBit(m_Choice, 0) == 0)
43 if (rangeDecoder.DecodeBit(m_Choice, 1) == 0)
66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol);
83 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol);
216 if (m_RangeDecoder.DecodeBit(m_IsMatchDecoders, (state << Base.kNumPosStatesBitsMax) + posState) == 0)
230 if (m_RangeDecoder.DecodeBit(m_IsRepDecoders, state) == 1)
233 if (m_RangeDecoder.DecodeBit(m_IsRepG0Decoders, state) == 0)
235 if (m_RangeDecoder.DecodeBit(m_IsRep0LongDecoders, (state << Base.kNumPosStatesBitsMax) + posState) == 0)
244 if (m_RangeDecoder.DecodeBit(m_IsRepG1Decoder
[all...]
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
H A DLzmaSpec.cpp148 unsigned DecodeBit(CProb *prob);
199 unsigned CRangeDecoder::DecodeBit(CProb *prob) function in class:CRangeDecoder
229 unsigned bit = rc->DecodeBit(&probs[m]);
253 m = (m << 1) + rc->DecodeBit(&Probs[m]);
297 if (rc->DecodeBit(&Choice) == 0)
299 if (rc->DecodeBit(&Choice2) == 0)
389 unsigned bit = RangeDec.DecodeBit(&probs[((1 + matchBit) << 8) + symbol]);
397 symbol = (symbol << 1) | RangeDec.DecodeBit(&probs[symbol]);
483 if (RangeDec.DecodeBit(&IsMatch[(state << kNumPosBitsMax) + posState]) == 0)
495 if (RangeDec.DecodeBit(
[all...]
/external/lzma/C/
H A DPpmd7Dec.c75 p->p.DecodeBit = Range_DecodeBit;
125 if (rc->DecodeBit(rc, *prob) == 0)
H A DPpmd7.h104 UInt32 (*DecodeBit)(void *p, UInt32 size0); member in struct:__anon13475
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h177 UInt32 DecodeBit(UInt32 size0, UInt32 numTotalBits) function in class:NCompress::NRangeCoder::CDecoder
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs213 public uint DecodeBit(uint size0, int numTotalBits) method in class:SevenZip.Compression.RangeCoder.Decoder

Completed in 130 milliseconds