Home
last modified time | relevance | path

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

/dragonfly/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h154 U32 loadedDictEnd; /* index of end of dictionary, within context's referential. member
189 U32 loadedDictEnd; member
927 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; in ZSTD_window_enforceMaxDist() local
929 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist()
944 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist()
974 U32 const loadedDictEnd = *loadedDictEndPtr; in ZSTD_checkDictValidity() local
976 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_checkDictValidity()
977 assert(blockEndIdx >= loadedDictEnd); in ZSTD_checkDictValidity()
979 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity()
1053 U32 const isDictionary = (ms->loadedDictEnd != 0); in ZSTD_getLowestMatchIndex()
[all …]
H A Dzstd_ldm.c483 ldmState->loadedDictEnd = 0; in ZSTD_ldm_generateSequences()
499 … ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); in ZSTD_ldm_generateSequences()
H A Dzstd_compress.c1493 ms->loadedDictEnd = 0; in ZSTD_invalidateMatchState()
1748 zc->ldmState.loadedDictEnd = 0; in ZSTD_resetCCtx_internal()
1851 … cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit; in ZSTD_resetCCtx_byAttachingCDict()
1914 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_resetCCtx_byCopyingCDict()
2005 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_copyCCtx_internal()
2465 assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit); in ZSTD_buildSeqStore()
2826 ms->loadedDictEnd = 0; in ZSTD_overflowCorrectIfNeeded()
2867 …ZSTD_checkDictValidity(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchSta… in ZSTD_compress_frameChunk()
3087 ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent()
3091 ls->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ls->window.base); in ZSTD_loadDictionaryContent()
H A Dzstdmt_compress.c513 serialState->ldmState.loadedDictEnd = 0; in ZSTDMT_serialState_reset()
519 …serialState->ldmState.loadedDictEnd = params.forceWindow ? 0 : (U32)(dictEnd - serialState->ldmSta… in ZSTDMT_serialState_reset()
H A Dzstd_lazy.c616 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_HcFindBestMatch_generic()