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

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
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.c179 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
184 if (historySize > kMaxHistorySize)
189 sizeReserv = historySize >> 1;
190 if (historySize > ((UInt32)2 << 30))
191 sizeReserv = historySize >> 2;
194 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
199 UInt32 newCyclicBufferSize = (historySize /* >> p->skipModeBits */) + 1;
208 hs = historySize - 1;
235 p->historySize = historySize;
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/LzmaCompress/Sdk/C/
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 DLzFindMt.h57 UInt32 historySize; member in struct:_CMatchFinderMt
78 UInt32 cyclicBufferSize; /* it must be historySize + 1 */
92 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore,
H A DLzFind.c160 int MatchFinder_Create(CMatchFinder *p, UInt32 historySize, argument
165 if (historySize > kMaxHistorySize)
170 sizeReserv = historySize >> 1;
171 if (historySize > ((UInt32)2 << 30))
172 sizeReserv = historySize >> 2;
175 p->keepSizeBefore = historySize + keepAddBufferBefore + 1;
180 UInt32 newCyclicBufferSize = (historySize /* >> p->skipModeBits */) + 1;
189 hs = historySize - 1;
216 p->historySize = historySize;
[all...]
H A DLzFindMt.c191 UInt32 subValue = (mf->pos - mf->historySize - 1);
465 SRes MatchFinderMt_Create(CMatchFinderMt *p, UInt32 historySize, UInt32 keepAddBufferBefore, argument
469 p->historySize = historySize;
481 if (!MatchFinder_Create(mf, historySize, keepAddBufferBefore, matchMaxLen, keepAddBufferAfter, alloc))
498 p->lzPos = p->historySize + 1;
523 MatchFinder_Normalize3(p->lzPos - p->historySize - 1, p->hash, p->fixedHashSize);
524 p->lzPos = p->historySize + 1;
694 len = (UInt32)(p->MixMatchesFunc(p, p->lzPos - p->historySize, distances) - (distances));

Completed in 2650 milliseconds