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

/external/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java131 short[] m_IsRep0LongDecoders = new short[Base.kNumStates << Base.kNumPosStatesBitsMax]; field in class:Decoder
184 SevenZip.Compression.RangeCoder.Decoder.InitBitModels(m_IsRep0LongDecoders);
235 if (m_RangeDecoder.DecodeBit(m_IsRep0LongDecoders, (state << Base.kNumPosStatesBitsMax) + posState) == 0)
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs143 BitDecoder[] m_IsRep0LongDecoders = new BitDecoder[Base.kNumStates << Base.kNumPosStatesBitsMax]; field in class:SevenZip.Compression.LZMA.Decoder
210 m_IsRep0LongDecoders[index].Init();
276 if (m_IsRep0LongDecoders[(state.Index << Base.kNumPosStatesBitsMax) + posState].Decode(m_RangeDecoder) == 0)

Completed in 95 milliseconds