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

/osnet-11/usr/src/grub/grub2/include/grub/lib/
H A DLzFind.h43 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
64 UInt32 historySize; member in struct:_CMatchFinder
85 historySize <= 3 GB
88 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize,
/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A DLzFind.c186 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
191 if (historySize > kMaxHistorySize)
196 sizeReserv = historySize >> 1;
197 if (historySize > ((UInt32)2 << 30))
198 sizeReserv = historySize >> 2;
201 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
206 UInt32 newCyclicBufferSize = (historySize /* >> p->skipModeBits */) + 1;
215 hs = historySize - 1;
242 p->historySize = historySize;
[all...]

Completed in 29 milliseconds