OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_IsMatchDecoders
(Results
1 - 2
of
2
) sorted by null
/external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java
126
short[]
m_IsMatchDecoders
= new short[Base.kNumStates << Base.kNumPosStatesBitsMax];
183
SevenZip.Compression.RangeCoder.Decoder.InitBitModels(
m_IsMatchDecoders
);
216
if (m_RangeDecoder.DecodeBit(
m_IsMatchDecoders
, (state << Base.kNumPosStatesBitsMax) + posState) == 0)
/external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs
138
BitDecoder[]
m_IsMatchDecoders
= new BitDecoder[Base.kNumStates << Base.kNumPosStatesBitsMax];
209
m_IsMatchDecoders
[index].Init();
243
if (
m_IsMatchDecoders
[state.Index << Base.kNumPosStatesBitsMax].Decode(m_RangeDecoder) != 0)
256
if (
m_IsMatchDecoders
[(state.Index << Base.kNumPosStatesBitsMax) + posState].Decode(m_RangeDecoder) == 0)
Completed in 24 milliseconds