Home
last modified time | relevance | path

Searched refs:OutWindow (Results 1 – 6 of 6) sorted by relevance

/third_party/lzma/CPP/7zip/Bundles/LzmaSpec/
DLzmaSpec.cpp321 COutWindow OutWindow; member in CLzmaDecoder
350 OutWindow.Create(dictSize); in Create()
375 if (!OutWindow.IsEmpty()) in DecodeLiteral()
376 prevByte = OutWindow.GetByte(1); in DecodeLiteral()
379 unsigned litState = ((OutWindow.TotalPos & ((1 << lp) - 1)) << lc) + (prevByte >> (8 - lc)); in DecodeLiteral()
384 unsigned matchByte = OutWindow.GetByte(rep0 + 1); in DecodeLiteral()
398 OutWindow.PutByte((Byte)(symbol - 0x100)); in DecodeLiteral()
483 unsigned posState = OutWindow.TotalPos & ((1 << pb) - 1); in Decode()
501 if (OutWindow.IsEmpty()) in Decode()
508 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1)); in Decode()
[all …]
/third_party/lzma/Java/SevenZip/Compression/LZMA/
DDecoder.java5 import SevenZip.Compression.LZ.OutWindow;
123 OutWindow m_OutWindow = new OutWindow();
/third_party/lzma/DOC/
Dlzma-specification.txt608 if (!OutWindow.IsEmpty())
609 prevByte = OutWindow.GetByte(1);
612 unsigned litState = ((OutWindow.TotalPos & ((1 << lp) - 1)) << lc) + (prevByte >> (8 - lc));
617 unsigned matchByte = OutWindow.GetByte(rep0 + 1);
631 OutWindow.PutByte((Byte)(symbol - 0x100));
678 unsigned posState = OutWindow.TotalPos & ((1 << pb) - 1);
964 unsigned posState = OutWindow.TotalPos & ((1 << pb) - 1);
1056 if (rep0 >= dictSize || !OutWindow.CheckDistance(rep0))
1077 if (OutWindow.IsEmpty())
1116 OutWindow.PutByte(OutWindow.GetByte(rep0 + 1));
[all …]
/third_party/lzma/Java/SevenZip/Compression/LZ/
DOutWindow.java7 public class OutWindow class
/third_party/lzma/CS/7zip/Compress/LZ/
DLzOutWindow.cs5 public class OutWindow class
/third_party/lzma/CS/7zip/Compress/LZMA/
DLzmaDecoder.cs135 LZ.OutWindow m_OutWindow = new LZ.OutWindow();