Lines Matching refs:nextToUpdate

10056     U32 nextToUpdate;       /* index from which to continue table update */  member
14385 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_invalidateMatchState()
14811 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_resetCCtx_byCopyingCDict()
14902 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_copyCCtx_internal()
15352 if (current > ms->nextToUpdate + 384) in ZSTD_buildSeqStore()
15353 ms->nextToUpdate = current - MIN(192, (U32)(current - ms->nextToUpdate - 384)); in ZSTD_buildSeqStore()
15512 (unsigned)zc->blockState.matchState.nextToUpdate); in ZSTD_compressBlock_internal()
15623 …blockState.matchState.window.dictLimit, (unsigned)zc->blockState.matchState.nextToUpdate, srcSize); in ZSTD_compressBlock_targetCBlockSize()
15651 if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; in ZSTD_overflowCorrectIfNeeded()
15652 else ms->nextToUpdate -= correction; in ZSTD_overflowCorrectIfNeeded()
15698 if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit; in ZSTD_compress_frameChunk()
15842 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_compressContinue_internal()
15968 ms->nextToUpdate = (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
17389 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillDoubleHashTable()
17911 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillHashTable()
18419 U32 idx = ms->nextToUpdate; in ZSTD_updateDUBT()
18440 ms->nextToUpdate = target; in ZSTD_updateDUBT()
18752 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_DUBT_findBestMatch()
18772 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtFindBestMatch()
18845 U32 idx = ms->nextToUpdate; in ZSTD_insertAndFindFirstIndex_internal()
18854 ms->nextToUpdate = target; in ZSTD_insertAndFindFirstIndex_internal()
19775 if (current > ms->nextToUpdate + 1024) { in ZSTD_ldm_limitTableUpdate()
19776 ms->nextToUpdate = in ZSTD_ldm_limitTableUpdate()
19777 current - MIN(512, current - ms->nextToUpdate - 1024); in ZSTD_ldm_limitTableUpdate()
20636 U32 idx = ms->nextToUpdate; in ZSTD_updateTree_internal()
20647 ms->nextToUpdate = target; in ZSTD_updateTree_internal()
20780 ms->nextToUpdate = current+1; /* skip insertion */ in ZSTD_insertBtAndGetAllMatches()
20883 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_insertBtAndGetAllMatches()
20900 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtGetAllMatches()
20961 U32 nextToUpdate3 = ms->nextToUpdate; in ZSTD_compressBlock_opt_generic()
20969 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate); in ZSTD_compressBlock_opt_generic()
21265 …assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, d… in ZSTD_initStats_ultra()
21274 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_initStats_ultra()