Home
last modified time | relevance | path

Searched refs:m_IsMatchDecoders (Results 1 - 2 of 2) sorted by relevance

/third_party/lzma/Java/SevenZip/Compression/LZMA/
H A DDecoder.java126 short[] m_IsMatchDecoders = new short[Base.kNumStates << Base.kNumPosStatesBitsMax]; field in Decoder
183 SevenZip.Compression.RangeCoder.Decoder.InitBitModels(m_IsMatchDecoders); in Init()
216 if (m_RangeDecoder.DecodeBit(m_IsMatchDecoders, (state << Base.kNumPosStatesBitsMax) + posState) == 0) in Code()
/third_party/lzma/CS/7zip/Compress/LZMA/
H A DLzmaDecoder.cs138 BitDecoder[] m_IsMatchDecoders = new BitDecoder[Base.kNumStates << Base.kNumPosStatesBitsMax]; field in SevenZip.Compression.LZMA.Decoder
209 m_IsMatchDecoders[index].Init(); in Init()
243 if (m_IsMatchDecoders[state.Index << Base.kNumPosStatesBitsMax].Decode(m_RangeDecoder) != 0) in Code()
256 if (m_IsMatchDecoders[(state.Index << Base.kNumPosStatesBitsMax) + posState].Decode(m_RangeDecoder) == 0) in Code()

Completed in 2 milliseconds