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

/linux-master/lib/zstd/compress/
H A Dzstd_compress_internal.h204 U32 loadedDictEnd; /* index of end of dictionary, within context's referential. member in struct:ZSTD_matchState_t
205 * When loadedDictEnd != 0, a dictionary is in use, and still valid.
206 * This relies on a mechanism to set loadedDictEnd=0 when dictionary is no longer within distance.
209 * loadedDictEnd == dictSize, since referential starts from zero.
256 U32 loadedDictEnd; member in struct:__anon200
957 U32 loadedDictEnd,
979 U32 const dictionaryInvalidated = curr > maxDist + loadedDictEnd;
992 U32 loadedDictEnd,
998 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) {
1090 * (srcEnd - base) - lowLimit == maxDist + loadedDictEnd
954 ZSTD_window_canOverflowCorrect(ZSTD_window_t const window, U32 cycleLog, U32 maxDist, U32 loadedDictEnd, void const* src) argument
989 ZSTD_window_needOverflowCorrection(ZSTD_window_t const window, U32 cycleLog, U32 maxDist, U32 loadedDictEnd, void const* src, void const* srcEnd) argument
1118 U32 const loadedDictEnd = (loadedDictEndPtr != NULL) ? *loadedDictEndPtr : 0; local
1165 U32 const loadedDictEnd = *loadedDictEndPtr; local
[all...]
H A Dzstd_ldm.c538 if (ZSTD_window_needOverflowCorrection(ldmState->window, 0, maxDist, ldmState->loadedDictEnd, chunkStart, chunkEnd)) {
544 ldmState->loadedDictEnd = 0;
560 ZSTD_window_enforceMaxDist(&ldmState->window, chunkEnd, maxDist, &ldmState->loadedDictEnd, NULL);
H A Dzstd_compress.c1608 ms->loadedDictEnd = 0;
1907 zc->ldmState.loadedDictEnd = 0;
2009 /* loadedDictEnd is expressed within the referential of the active context */
2010 cctx->blockState.matchState.loadedDictEnd = cctx->blockState.matchState.window.dictLimit;
2089 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd;
2191 dstMatchState->loadedDictEnd= srcMatchState->loadedDictEnd;
2746 assert(ms->dictMatchState == NULL || ms->loadedDictEnd == ms->window.dictLimit);
3818 if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->loadedDictEnd, i
[all...]
H A Dzstd_lazy.c667 const U32 isDictionary = (ms->loadedDictEnd != 0);
1141 const U32 isDictionary = (ms->loadedDictEnd != 0);

Completed in 403 milliseconds