Searched refs:lowLimit (Results 1 - 10 of 10) sorted by relevance

/linux-master/lib/lz4/
H A Dlz4hc_compress.c70 hc4->lowLimit = 64 * KB;
111 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) local
112 ? hc4->lowLimit
122 while ((matchIndex >= lowLimit)
183 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) local
184 ? hc4->lowLimit
195 while ((matchIndex >= lowLimit)
242 && (matchIndex + back > lowLimit)
[all...]
H A Dlz4_compress.c190 const BYTE *lowLimit; local
216 lowLimit = (const BYTE *)source;
220 lowLimit = (const BYTE *)source - dictPtr->dictSize;
224 lowLimit = (const BYTE *)source;
272 lowLimit = dictionary;
275 lowLimit = (const BYTE *)source;
294 while (((ip > anchor) & (match + refDelta > lowLimit))
339 && (lowLimit == dictionary)) {
407 lowLimit = dictionary;
410 lowLimit
532 const BYTE *lowLimit = (const BYTE *) src; local
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_compress_internal.h189 U32 lowLimit; /* below that point, no more valid data */ member in struct:__anon196
892 - ZSTD_CURRENT_MAX) /* Maximum beginning lowLimit */
903 window->lowLimit = end;
910 window.lowLimit == ZSTD_WINDOW_START_INDEX &&
920 return window.lowLimit < window.dictLimit;
1019 * lowLimit > (3<<29) ==> current > 3<<29 + 1<<windowLog
1033 * 3. (cctx->lowLimit + 1<<windowLog) < 1<<32:
1062 if (window->lowLimit < correction + ZSTD_WINDOW_START_INDEX) {
1063 window->lowLimit = ZSTD_WINDOW_START_INDEX;
1065 window->lowLimit
[all...]
H A Dzstd_lazy.c86 U32 const windowValid = ms->window.lowLimit;
91 DEBUGLOG(8, "ZSTD_insertDUBT1(%u) (dictLimit=%u, lowLimit=%u)",
175 U32 const dictLowLimit = dms->window.lowLimit;
176 U32 const dictIndexDelta = ms->window.lowLimit - dictHighLimit;
665 const U32 lowestValid = ms->window.lowLimit;
668 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance; local
689 for ( ; (matchIndex>=lowLimit) & (nbAttempts>0) ; nbAttempts--) {
1139 const U32 lowestValid = ms->window.lowLimit;
1142 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance; local
1199 if (matchIndex < lowLimit)
[all...]
H A Dzstd_double_fast.c547 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); local
548 const U32 dictStartIndex = lowLimit;
550 const U32 prefixStartIndex = (dictLimit > lowLimit) ? dictLimit : lowLimit;
H A Dzstd_fast.c563 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); local
564 const U32 dictStartIndex = lowLimit;
567 const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit;
H A Dzstd_opt.c599 U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0;
1366 assert(ms->window.dictLimit == ms->window.lowLimit); /* no dictionary */
1375 ms->window.lowLimit = ms->window.dictLimit;
1406 && (ms->window.dictLimit == ms->window.lowLimit) /* no dictionary */
H A Dzstd_ldm.c332 U32 const lowestIndex = extDict ? ldmState->window.lowLimit : dictLimit;
H A Dzstd_compress.c3874 if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit;
/linux-master/include/linux/
H A Dlz4.h126 unsigned int lowLimit; member in struct:__anon110

Completed in 174 milliseconds