Home
last modified time | relevance | path

Searched refs:lowLimit (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.4/lib/lz4/
Dlz4hc_compress.c70 hc4->lowLimit = 64 * KB; in LZ4HC_init()
111 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndFindBestMatch() local
112 ? hc4->lowLimit in LZ4HC_InsertAndFindBestMatch()
122 while ((matchIndex >= lowLimit) in LZ4HC_InsertAndFindBestMatch()
183 const U32 lowLimit = (hc4->lowLimit + 64 * KB > (U32)(ip - base)) in LZ4HC_InsertAndGetWiderMatch() local
184 ? hc4->lowLimit in LZ4HC_InsertAndGetWiderMatch()
195 while ((matchIndex >= lowLimit) in LZ4HC_InsertAndGetWiderMatch()
242 && (matchIndex + back > lowLimit) in LZ4HC_InsertAndGetWiderMatch()
658 ctxPtr->lowLimit = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
698 const BYTE * const dictBegin = ctxPtr->dictBase + ctxPtr->lowLimit; in LZ4_compressHC_continue_generic()
[all …]
Dlz4_compress.c190 const BYTE *lowLimit; in LZ4_compress_generic() local
216 lowLimit = (const BYTE *)source; in LZ4_compress_generic()
220 lowLimit = (const BYTE *)source - dictPtr->dictSize; in LZ4_compress_generic()
224 lowLimit = (const BYTE *)source; in LZ4_compress_generic()
272 lowLimit = dictionary; in LZ4_compress_generic()
275 lowLimit = (const BYTE *)source; in LZ4_compress_generic()
294 while (((ip > anchor) & (match + refDelta > lowLimit)) in LZ4_compress_generic()
339 && (lowLimit == dictionary)) { in LZ4_compress_generic()
407 lowLimit = dictionary; in LZ4_compress_generic()
410 lowLimit = (const BYTE *)source; in LZ4_compress_generic()
[all …]
/Linux-v5.4/lib/zstd/
Dcompress.c58 U32 lowLimit; /* below that point, no more data */ member
222 cctx->lowLimit = end; in ZSTD_continueCCtx()
296 zc->lowLimit = 0; in ZSTD_resetCCtx_advanced()
376 dstCCtx->lowLimit = srcCCtx->lowLimit; in ZSTD_copyCCtx()
1126 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_fast_extDict_generic()
1407 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_doubleFast_extDict_generic()
1582 U32 const windowLow = zc->lowLimit; in ZSTD_insertBt1()
1661 const U32 windowLow = zc->lowLimit; in ZSTD_insertBtAndFindBestMatch()
1831 const U32 lowLimit = zc->lowLimit; in ZSTD_HcFindBestMatch_generic() local
1840 for (; (matchIndex > lowLimit) & (nbAttempts > 0); nbAttempts--) { in ZSTD_HcFindBestMatch_generic()
[all …]
Dzstd_opt.h253 const U32 windowLow = zc->lowLimit; in ZSTD_insertBtAndGetAllMatches()
709 const U32 lowestIndex = ctx->lowLimit; in ZSTD_compressBlock_opt_extDict_generic()
/Linux-v5.4/include/linux/
Dlz4.h126 unsigned int lowLimit; member