HomeSort by relevance Sort by last modified time
    Searched refs:m_PosSlotDecoder (Results 1 - 2 of 2) sorted by null

  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 133 BitTreeDecoder[] m_PosSlotDecoder = new BitTreeDecoder[Base.kNumLenToPosStates];
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/
LzmaDecoder.cs 145 BitTreeDecoder[] m_PosSlotDecoder = new BitTreeDecoder[Base.kNumLenToPosStates];
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 23 milliseconds