Searched defs:historySize (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzFind.h20 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
41 UInt32 historySize; member in struct:_CMatchFinder
62 historySize <= 3 GB
65 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
H A DLzFind.c165 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
170 if (historySize > kMaxHistorySize)
175 sizeReserv = historySize >> 1;
176 if (historySize > ((UInt32)2 << 30))
177 sizeReserv = historySize >> 2;
180 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
185 UInt32 newCyclicBufferSize = (historySize /* >> p->skipModeBits */) + 1;
194 hs = historySize - 1;
221 p->historySize = historySize;
[all...]

Completed in 91 milliseconds