Home
last modified time | relevance | path

Searched refs:nextToUpdate (Results 1 – 9 of 9) sorted by relevance

/linux-6.6.21/lib/lz4/
Dlz4hc_compress.c65 hc4->nextToUpdate = 64 * KB; in LZ4HC_init()
81 U32 idx = hc4->nextToUpdate; in LZ4HC_Insert()
96 hc4->nextToUpdate = target; in LZ4HC_Insert()
664 ctxPtr->nextToUpdate = ctxPtr->dictLimit; in LZ4HC_setExternalDict()
760 if (streamPtr->nextToUpdate < streamPtr->dictLimit) in LZ4_saveDictHC()
761 streamPtr->nextToUpdate = streamPtr->dictLimit; in LZ4_saveDictHC()
/linux-6.6.21/lib/zstd/compress/
Dzstd_opt.c537 U32 idx = ms->nextToUpdate; in ZSTD_updateTree_internal()
548 ms->nextToUpdate = target; in ZSTD_updateTree_internal()
681 ms->nextToUpdate = curr+1; /* skip insertion */ in ZSTD_insertBtAndGetAllMatches()
781 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_insertBtAndGetAllMatches()
809 if (ip < ms->window.base + ms->nextToUpdate) in ZSTD_btGetAllMatches_internal()
1058 U32 nextToUpdate3 = ms->nextToUpdate; in ZSTD_compressBlock_opt_generic()
1071 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate); in ZSTD_compressBlock_opt_generic()
1367 …assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, d… in ZSTD_initStats_ultra()
1376 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_initStats_ultra()
Dzstd_lazy.c34 U32 idx = ms->nextToUpdate; in ZSTD_updateDUBT()
55 ms->nextToUpdate = target; in ZSTD_updateDUBT()
369 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_DUBT_findBestMatch()
389 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtFindBestMatch()
405 U32 idx = ms->nextToUpdate; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
499 for (idx = ms->nextToUpdate; idx < target; idx++) { in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
509 ms->nextToUpdate = target; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
628 U32 idx = ms->nextToUpdate; in ZSTD_insertAndFindFirstIndex_internal()
637 ms->nextToUpdate = target; in ZSTD_insertAndFindFirstIndex_internal()
939 U32 idx = ms->nextToUpdate; in ZSTD_row_update_internal()
[all …]
Dzstd_ldm.c315 if (curr > ms->nextToUpdate + 1024) { in ZSTD_ldm_limitTableUpdate()
316 ms->nextToUpdate = in ZSTD_ldm_limitTableUpdate()
317 curr - MIN(512, curr - ms->nextToUpdate - 1024); in ZSTD_ldm_limitTableUpdate()
Dzstd_compress.c1607 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_invalidateMatchState()
2088 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_resetCCtx_byCopyingCDict()
2190 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_copyCCtx_internal()
2753 if (curr > ms->nextToUpdate + 384) in ZSTD_buildSeqStore()
2754 ms->nextToUpdate = curr - MIN(192, (U32)(curr - ms->nextToUpdate - 384)); in ZSTD_buildSeqStore()
3588 (unsigned)zc->blockState.matchState.nextToUpdate); in ZSTD_compressBlock_splitBlock_internal()
3686 (unsigned)zc->blockState.matchState.nextToUpdate); in ZSTD_compressBlock_internal()
3798 …blockState.matchState.window.dictLimit, (unsigned)zc->blockState.matchState.nextToUpdate, srcSize); in ZSTD_compressBlock_targetCBlockSize()
3826 if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; in ZSTD_overflowCorrectIfNeeded()
3827 else ms->nextToUpdate -= correction; in ZSTD_overflowCorrectIfNeeded()
[all …]
Dzstd_fast.c24 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillHashTable()
Dzstd_double_fast.c25 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillDoubleHashTable()
Dzstd_compress_internal.h211 U32 nextToUpdate; /* index from which to continue table update */ member
/linux-6.6.21/include/linux/
Dlz4.h128 unsigned int nextToUpdate; member