Searched refs:loadedDictEnd (Results 1 – 4 of 4) sorted by relevance
/linux-6.3-rc2/lib/zstd/compress/ |
A D | zstd_compress_internal.h | 256 U32 loadedDictEnd; member 957 U32 loadedDictEnd, in ZSTD_window_canOverflowCorrect() argument 979 U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd; in ZSTD_window_canOverflowCorrect() 992 U32 loadedDictEnd, in ZSTD_window_needOverflowCorrection() argument 1118 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; in ZSTD_window_enforceMaxDist() local 1135 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist() 1165 U32 const loadedDictEnd = *loadedDictEndPtr; in ZSTD_checkDictValidity() local 1168 assert(blockEndIdx >= loadedDictEnd); in ZSTD_checkDictValidity() 1170 if (blockEndIdx > loadedDictEnd + maxDist) { in ZSTD_checkDictValidity() 1247 U32 const isDictionary = (ms->loadedDictEnd != 0); in ZSTD_getLowestMatchIndex() [all …]
|
A D | zstd_ldm.c | 538 …window_needOverflowCorrection(ldmState->window, 0, maxDist, ldmState->loadedDictEnd, chunkStart, c… in ZSTD_ldm_generateSequences() 544 ldmState->loadedDictEnd = 0; in ZSTD_ldm_generateSequences() 560 … ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL); in ZSTD_ldm_generateSequences()
|
A D | zstd_compress.c | 1608 ms->loadedDictEnd = 0; in ZSTD_invalidateMatchState() 1907 zc->ldmState.loadedDictEnd = 0; in ZSTD_resetCCtx_internal() 2010 … cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit; in ZSTD_resetCCtx_byAttachingCDict() 2089 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_resetCCtx_byCopyingCDict() 2191 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd; in ZSTD_copyCCtx_internal() 2746 assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit); in ZSTD_buildSeqStore() 3818 …if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->loadedDictEnd, ip, iend)… in ZSTD_overflowCorrectIfNeeded() 3829 ms->loadedDictEnd = 0; in ZSTD_overflowCorrectIfNeeded() 3871 … ZSTD_window_enforceMaxDist(&ms->window, ip, maxDist, &ms->loadedDictEnd, &ms->dictMatchState); in ZSTD_compress_frameChunk() 4143 ms->loadedDictEnd = params->forceWindow ? 0 : (U32)(iend - ms->window.base); in ZSTD_loadDictionaryContent() [all …]
|
A D | zstd_lazy.c | 667 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_HcFindBestMatch() 1141 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_RowFindBestMatch()
|
Completed in 29 milliseconds