Home
last modified time | relevance | path

Searched refs:keepAddBufferBefore (Results 1 – 7 of 7) sorted by relevance

/third_party/lzma/Java/SevenZip/Compression/LZ/
DBinTree.java79 public boolean Create(int historySize, int keepAddBufferBefore, in Create() argument
86 int windowReservSize = (historySize + keepAddBufferBefore + in Create()
89 …super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize… in Create()
/third_party/lzma/CS/7zip/Compress/LZ/
DLzBinTree.cs79 public void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument
86 UInt32 windowReservSize = (historySize + keepAddBufferBefore + in Create()
89 …base.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize); in Create()
DIMatchFinder.cs19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument
/third_party/lzma/C/
DLzFindMt.h99 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
DLzFind.h100 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter,
DLzFindMt.c848 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, in MatchFinderMt_Create() argument
862 keepAddBufferBefore += (kHashBufferSize + kBtBufferSize); in MatchFinderMt_Create()
864 …if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, all… in MatchFinderMt_Create()
DLzFind.c371 UInt32 keepAddBufferBefore, UInt32 matchMaxLen, UInt32 keepAddBufferAfter, in MatchFinder_Create() argument
377 p->keepSizeBefore = historySize + keepAddBufferBefore + 1; in MatchFinder_Create()