Home
last modified time | relevance | path

Searched refs:historySize (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/common/lzma/
H A DLzFind.c165 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, in MatchFinder_Create() argument
170 if (historySize > kMaxHistorySize) in MatchFinder_Create()
175 sizeReserv = historySize >> 1; in MatchFinder_Create()
176 if (historySize > ((UInt32)2 << 30)) in MatchFinder_Create()
177 sizeReserv = historySize >> 2; in MatchFinder_Create()
180 p->keepSizeBefore = historySize + keepAddBufferBefore + 1; in MatchFinder_Create()
185 UInt32 newCyclicBufferSize = (historySize /* >> p->skipModeBits */) + 1; in MatchFinder_Create()
194 hs = historySize - 1; in MatchFinder_Create()
221 p->historySize = historySize; in MatchFinder_Create()
282 return (p->pos - p->historySize - 1) & kNormalizeMask; in MatchFinder_GetSubValue()
H A DLzFind.h41 UInt32 historySize; member
65 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,