Searched refs:loadedDictEnd (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/lib/zstd/compress/ |
D | zstd_compress_internal.h | 204 U32 loadedDictEnd; /* index of end of dictionary, within context's referential. member 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 998 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) { in ZSTD_window_needOverflowCorrection() 1118 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; in ZSTD_window_enforceMaxDist() local 1120 (unsigned)blockEndIdx, (unsigned)maxDist, (unsigned)loadedDictEnd); in ZSTD_window_enforceMaxDist() 1135 if (blockEndIdx > maxDist + loadedDictEnd) { in ZSTD_window_enforceMaxDist() 1165 U32 const loadedDictEnd = *loadedDictEndPtr; in ZSTD_checkDictValidity() local [all …]
|
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()
|
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() 3870 …ZSTD_checkDictValidity(&ms->window, ip + blockSize, maxDist, &ms->loadedDictEnd, &ms->dictMatchSta… in ZSTD_compress_frameChunk() 3871 … ZSTD_window_enforceMaxDist(&ms->window, ip, maxDist, &ms->loadedDictEnd, &ms->dictMatchState); in ZSTD_compress_frameChunk() [all …]
|
D | zstd_lazy.c | 667 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_HcFindBestMatch() 1141 const U32 isDictionary = (ms->loadedDictEnd != 0); in ZSTD_RowFindBestMatch()
|