Home
last modified time | relevance | path

Searched refs:loadedDictEnd (Results 1 – 4 of 4) sorted by relevance

/linux/lib/zstd/compress/
H A Dzstd_compress_internal.h272 U32 loadedDictEnd; /* index of end of dictionary, within context's referential. member
338 U32 loadedDictEnd; member
1092 U32 loadedDictEnd, in ZSTD_window_canOverflowCorrect() argument
1114 U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd; in ZSTD_window_canOverflowCorrect()
1127 U32 loadedDictEnd, in ZSTD_window_needOverflowCorrection() argument
1133 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) { in ZSTD_window_needOverflowCorrection()
1255 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; in ZSTD_window_enforceMaxDist() local
1257 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
1272 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
1302 U32 const loadedDictEnd = *loadedDictEndPtr; in ZSTD_checkDictValidity() local
[all …]
H A Dzstd_ldm.c560 …window_needOverflowCorrection(ldmState->window, 0, maxDist, ldmState->loadedDictEnd, chunkStart, c… in ZSTD_ldm_generateSequences()
566 ldmState->loadedDictEnd = 0; in ZSTD_ldm_generateSequences()
582 … ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); in ZSTD_ldm_generateSequences()
H A Dzstd_compress.c1864 ms->loadedDictEnd = 0; in ZSTD_invalidateMatchState()
2157 zc->ldmState.loadedDictEnd = 0; in ZSTD_resetCCtx_internal()
2300 … cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit; in ZSTD_resetCCtx_byAttachingCDict()
2398 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_resetCCtx_byCopyingCDict()
2501 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_copyCCtx_internal()
3203 assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit); in ZSTD_buildSeqStore()
4448 …if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->loadedDictEnd, ip, iend)… in ZSTD_overflowCorrectIfNeeded()
4459 ms->loadedDictEnd = 0; in ZSTD_overflowCorrectIfNeeded()
4543 …ZSTD_checkDictValidity(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchSta… in ZSTD_compress_frameChunk()
4544 … ZSTD_window_enforceMaxDist(&ms->window, ip, maxDist, &ms->loadedDictEnd, &ms->dictMatchState); in ZSTD_compress_frameChunk()
[all …]
H A Dzstd_lazy.c687 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_HcFindBestMatch()
1163 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_RowFindBestMatch()