Home
last modified time | relevance | path

Searched refs:m_PosSlotDecoder (Results 1 – 2 of 2) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DDecoder.java133 BitTreeDecoder[] m_PosSlotDecoder = new BitTreeDecoder[Base.kNumLenToPosStates]; field in Decoder
151 m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits); in Decoder()
194 m_PosSlotDecoder[i].Init(); in Init()
273 int posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder); in Code()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaDecoder.cs145 BitTreeDecoder[] m_PosSlotDecoder = new BitTreeDecoder[Base.kNumLenToPosStates]; field in SevenZip.Compression.LZMA.Decoder
164 m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits); in Decoder()
220 m_PosSlotDecoder[i].Init(); in Init()
315 uint posSlot = m_PosSlotDecoder[Base.GetLenToPosState(len)].Decode(m_RangeDecoder); in Code()