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/C/ |
D | LzFind.c | 177 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, in MatchFinder_Create() argument 183 if (historySize > kMaxHistorySize) in MatchFinder_Create() 189 sizeReserv = historySize >> 1; in MatchFinder_Create() 190 if (historySize >= ((UInt32)3 << 30)) sizeReserv = historySize >> 3; in MatchFinder_Create() 191 else if (historySize >= ((UInt32)2 << 30)) sizeReserv = historySize >> 2; in MatchFinder_Create() 195 p->keepSizeBefore = historySize + keepAddBufferBefore + 1; in MatchFinder_Create() 202 UInt32 newCyclicBufferSize = historySize + 1; in MatchFinder_Create() 211 hs = historySize - 1; in MatchFinder_Create() 238 p->historySize = historySize; in MatchFinder_Create() 322 return (p->pos - p->historySize - 1) & kNormalizeMask; in MatchFinder_GetSubValue()
|
D | LzFindMt.c | 193 UInt32 subValue = (mf->pos - mf->historySize - 1); in HashThreadFunc() 474 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, in MatchFinderMt_Create() argument 478 p->historySize = historySize; in MatchFinderMt_Create() 490 …if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, all… in MatchFinderMt_Create() 510 p->lzPos = p->historySize + 1; in MatchFinderMt_Init() 535 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize); in MatchFinderMt_Normalize() 536 p->lzPos = p->historySize + 1; in MatchFinderMt_Normalize() 705 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances)); in MatchFinderMt_GetMatches()
|
D | LzFindMt.h | 59 UInt32 historySize; member 94 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
|
D | LzFind.h | 44 UInt32 historySize; member 72 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
|
/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
|