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

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

Completed in 130 milliseconds