Searched refs:historySize (Results 1 – 7 of 7) sorted by relevance
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 79 public boolean Create(int historySize, int keepAddBufferBefore, in Create() argument 82 if (historySize > kMaxValForNormalize - 256) in Create() 86 int windowReservSize = (historySize + keepAddBufferBefore + in Create() 89 …super.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize… in Create() 93 int cyclicBufferSize = historySize + 1; in Create() 101 hs = historySize - 1; in Create()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 79 public void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument 82 if (historySize > kMaxValForNormalize - 256) in Create() 86 UInt32 windowReservSize = (historySize + keepAddBufferBefore + in Create() 89 …base.Create(historySize + keepAddBufferBefore, matchMaxLen + keepAddBufferAfter, windowReservSize); in Create() 93 UInt32 cyclicBufferSize = historySize + 1; in Create() 101 hs = historySize - 1; in Create()
|
D | IMatchFinder.cs | 19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore, in Create() argument
|
/external/lzma/C/ |
D | LzFind.c | 171 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, in MatchFinder_Create() argument 176 if (historySize > kMaxHistorySize) in MatchFinder_Create() 181 sizeReserv = historySize >> 1; in MatchFinder_Create() 182 if (historySize > ((UInt32)2 << 30)) in MatchFinder_Create() 183 sizeReserv = historySize >> 2; in MatchFinder_Create() 186 p->keepSizeBefore = historySize + keepAddBufferBefore + 1; in MatchFinder_Create() 191 UInt32 newCyclicBufferSize = historySize + 1; in MatchFinder_Create() 200 hs = historySize - 1; in MatchFinder_Create() 226 p->historySize = historySize; in MatchFinder_Create() 287 return (p->pos - p->historySize - 1) & kNormalizeMask; in MatchFinder_GetSubValue()
|
D | LzFindMt.c | 191 UInt32 subValue = (mf->pos - mf->historySize - 1); in HashThreadFunc() 465 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, in MatchFinderMt_Create() argument 469 p->historySize = historySize; in MatchFinderMt_Create() 481 …if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, all… in MatchFinderMt_Create() 498 p->lzPos = p->historySize + 1; in MatchFinderMt_Init() 523 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize); in MatchFinderMt_Normalize() 524 p->lzPos = p->historySize + 1; in MatchFinderMt_Normalize() 694 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances)); in MatchFinderMt_GetMatches()
|
D | LzFindMt.h | 61 UInt32 historySize; member 96 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
|
D | LzFind.h | 45 UInt32 historySize; member 69 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|