Home
last modified time | relevance | path

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

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