Home
last modified time | relevance | path

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

/linux-5.19.10/lib/zstd/compress/
Dzstd_compress_internal.h148 U32 loadedDictEnd; /* index of end of dictionary, within context's referential. member
192 U32 loadedDictEnd; member
910 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; in ZSTD_window_enforceMaxDist() local
912 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
927 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
957 U32 const loadedDictEnd = *loadedDictEndPtr; in ZSTD_checkDictValidity() local
959 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_checkDictValidity()
960 assert(blockEndIdx >= loadedDictEnd); in ZSTD_checkDictValidity()
962 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity()
1036 U32 const isDictionary = (ms->loadedDictEnd != 0); in ZSTD_getLowestMatchIndex()
[all …]
Dzstd_ldm.c509 ldmState->loadedDictEnd = 0; in ZSTD_ldm_generateSequences()
525 … ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); in ZSTD_ldm_generateSequences()
Dzstd_compress.c1451 ms->loadedDictEnd = 0; in ZSTD_invalidateMatchState()
1706 zc->ldmState.loadedDictEnd = 0; in ZSTD_resetCCtx_internal()
1809 … cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit; in ZSTD_resetCCtx_byAttachingCDict()
1873 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_resetCCtx_byCopyingCDict()
1965 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_copyCCtx_internal()
2414 assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit); in ZSTD_buildSeqStore()
2775 ms->loadedDictEnd = 0; in ZSTD_overflowCorrectIfNeeded()
2816 …ZSTD_checkDictValidity(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchSta… in ZSTD_compress_frameChunk()
3060 ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
3064 ls->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ls->window.base); in ZSTD_loadDictionaryContent()
Dzstd_lazy.c617 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_HcFindBestMatch_generic()