Searched refs:DecodeBit (Results 1 – 8 of 8) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Decoder.java | 40 if (rangeDecoder.DecodeBit(m_Choice, 0) == 0) in Decode() 43 if (rangeDecoder.DecodeBit(m_Choice, 1) == 0) in Decode() 66 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol); in DecodeNormal() 78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol); in DecodeWithMatchByte() 83 symbol = (symbol << 1) | rangeDecoder.DecodeBit(m_Decoders, symbol); in DecodeWithMatchByte() 216 …if (m_RangeDecoder.DecodeBit(m_IsMatchDecoders, (state << Base.kNumPosStatesBitsMax) + posState) =… in Code() 230 if (m_RangeDecoder.DecodeBit(m_IsRepDecoders, state) == 1) in Code() 233 if (m_RangeDecoder.DecodeBit(m_IsRepG0Decoders, state) == 0) in Code() 235 …if (m_RangeDecoder.DecodeBit(m_IsRep0LongDecoders, (state << Base.kNumPosStatesBitsMax) + posState… in Code() 244 if (m_RangeDecoder.DecodeBit(m_IsRepG1Decoders, state) == 0) in Code() [all …]
|
/external/lzma/CPP/7zip/Bundles/LzmaSpec/ |
D | LzmaSpec.cpp | 148 unsigned DecodeBit(CProb *prob); 199 unsigned CRangeDecoder::DecodeBit(CProb *prob) in DecodeBit() function in CRangeDecoder 229 unsigned bit = rc->DecodeBit(&probs[m]); in BitTreeReverseDecode() 253 m = (m << 1) + rc->DecodeBit(&Probs[m]); in Decode() 297 if (rc->DecodeBit(&Choice) == 0) in Decode() 299 if (rc->DecodeBit(&Choice2) == 0) in Decode() 389 unsigned bit = RangeDec.DecodeBit(&probs[((1 + matchBit) << 8) + symbol]); in DecodeLiteral() 397 symbol = (symbol << 1) | RangeDec.DecodeBit(&probs[symbol]); in DecodeLiteral() 485 if (RangeDec.DecodeBit(&IsMatch[(state << kNumPosBitsMax) + posState]) == 0) in Decode() 497 if (RangeDec.DecodeBit(&IsRep[state]) != 0) in Decode() [all …]
|
/external/lzma/Java/SevenZip/Compression/RangeCoder/ |
D | BitTreeDecoder.java | 23 m = (m << 1) + rangeDecoder.DecodeBit(Models, m); in Decode() 33 int bit = rangeDecoder.DecodeBit(Models, m); in ReverseDecode() 48 int bit = rangeDecoder.DecodeBit(Models, startIndex + m); in ReverseDecode()
|
D | Decoder.java | 54 public int DecodeBit(short []probs, int index) throws IOException in DecodeBit() method in Decoder
|
/external/lzma/C/ |
D | Ppmd7Dec.c | 75 p->p.DecodeBit = Range_DecodeBit; in Ppmd7z_RangeDec_CreateVTable() 125 if (rc->DecodeBit(rc, *prob) == 0) in Ppmd7_DecodeSymbol()
|
D | Ppmd7.h | 104 UInt32 (*DecodeBit)(void *p, UInt32 size0); member
|
/external/lzma/CS/7zip/Compress/RangeCoder/ |
D | RangeCoder.cs | 213 public uint DecodeBit(uint size0, int numTotalBits) in DecodeBit() method in SevenZip.Compression.RangeCoder.Decoder
|
/external/lzma/DOC/ |
D | lzma-specification.txt | 479 The DecodeBit() function decodes one bit. 487 unsigned CRangeDecoder::DecodeBit(CProb *prob) 533 unsigned bit = rc->DecodeBit(&probs[m]); 557 m = (m << 1) + rc->DecodeBit(&Probs[m]); 622 unsigned bit = RangeDec.DecodeBit(&probs[((1 + matchBit) << 8) + symbol]); 630 symbol = (symbol << 1) | RangeDec.DecodeBit(&probs[symbol]); 706 if (rc->DecodeBit(&Choice) == 0) 708 if (rc->DecodeBit(&Choice2) == 0)
|