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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 123 OutWindow m_OutWindow = new OutWindow();
162 m_OutWindow.Create(Math.max(m_DictionarySizeCheck, (1 << 12)));
181 m_OutWindow.Init(false);
205 m_OutWindow.SetStream(outStream);
220 prevByte = decoder2.DecodeWithMatchByte(m_RangeDecoder, m_OutWindow.GetByte(rep0));
223 m_OutWindow.PutByte(prevByte);
299 // m_OutWindow.Flush();
302 m_OutWindow.CopyBlock(rep0, len);
304 prevByte = m_OutWindow.GetByte(0);
307 m_OutWindow.Flush();
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 135 LZ.OutWindow m_OutWindow = new LZ.OutWindow();
174 m_OutWindow.Create(blockSize);
201 m_OutWindow.Init(outStream, _solid);
247 m_OutWindow.PutByte(b);
259 byte prevByte = m_OutWindow.GetByte(0);
262 (uint)nowPos64, prevByte, m_OutWindow.GetByte(rep0));
265 m_OutWindow.PutByte(b);
279 m_OutWindow.PutByte(m_OutWindow.GetByte(rep0));
333 if (rep0 >= m_OutWindow.TrainSize + nowPos64 || rep0 >= m_DictionarySizeCheck)
    [all...]

Completed in 1681 milliseconds