Lines Matching refs:nextToUpdate

10054     U32 nextToUpdate;       /* index from which to continue table update */  member
14383 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_invalidateMatchState()
14809 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_resetCCtx_byCopyingCDict()
14900 dstMatchState->nextToUpdate = srcMatchState->nextToUpdate; in ZSTD_copyCCtx_internal()
15350 if (current > ms->nextToUpdate + 384) in ZSTD_buildSeqStore()
15351 ms->nextToUpdate = current - MIN(192, (U32)(current - ms->nextToUpdate - 384)); in ZSTD_buildSeqStore()
15510 (unsigned)zc->blockState.matchState.nextToUpdate); in ZSTD_compressBlock_internal()
15621 …blockState.matchState.window.dictLimit, (unsigned)zc->blockState.matchState.nextToUpdate, srcSize); in ZSTD_compressBlock_targetCBlockSize()
15649 if (ms->nextToUpdate < correction) ms->nextToUpdate = 0; in ZSTD_overflowCorrectIfNeeded()
15650 else ms->nextToUpdate -= correction; in ZSTD_overflowCorrectIfNeeded()
15696 if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit; in ZSTD_compress_frameChunk()
15840 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_compressContinue_internal()
15966 ms->nextToUpdate = (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
17387 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillDoubleHashTable()
17909 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillHashTable()
18417 U32 idx = ms->nextToUpdate; in ZSTD_updateDUBT()
18438 ms->nextToUpdate = target; in ZSTD_updateDUBT()
18750 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_DUBT_findBestMatch()
18770 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtFindBestMatch()
18843 U32 idx = ms->nextToUpdate; in ZSTD_insertAndFindFirstIndex_internal()
18852 ms->nextToUpdate = target; in ZSTD_insertAndFindFirstIndex_internal()
19773 if (current > ms->nextToUpdate + 1024) { in ZSTD_ldm_limitTableUpdate()
19774 ms->nextToUpdate = in ZSTD_ldm_limitTableUpdate()
19775 current - MIN(512, current - ms->nextToUpdate - 1024); in ZSTD_ldm_limitTableUpdate()
20634 U32 idx = ms->nextToUpdate; in ZSTD_updateTree_internal()
20645 ms->nextToUpdate = target; in ZSTD_updateTree_internal()
20778 ms->nextToUpdate = current+1; /* skip insertion */ in ZSTD_insertBtAndGetAllMatches()
20881 ms->nextToUpdate = matchEndIdx - 8; /* skip repetitive patterns */ in ZSTD_insertBtAndGetAllMatches()
20898 if (ip < ms->window.base + ms->nextToUpdate) return 0; /* skipped area */ in ZSTD_BtGetAllMatches()
20959 U32 nextToUpdate3 = ms->nextToUpdate; in ZSTD_compressBlock_opt_generic()
20967 (U32)(ip - base), ms->window.dictLimit, ms->nextToUpdate); in ZSTD_compressBlock_opt_generic()
21263 …assert(ms->window.dictLimit - ms->nextToUpdate <= 1); /* no prefix (note: intentional overflow, d… in ZSTD_initStats_ultra()
21272 ms->nextToUpdate = ms->window.dictLimit; in ZSTD_initStats_ultra()