Home
last modified time | relevance | path

Searched refs:lowLimit (Results 1 – 7 of 7) sorted by relevance

/reactos/drivers/filesystems/btrfs/zstd/
H A Dzstd_compress_internal.h722 window->lowLimit = end; in ZSTD_window_clear()
732 return window.lowLimit < window.dictLimit; in ZSTD_window_hasExtDict()
807 if (window->lowLimit <= correction) window->lowLimit = 1; in ZSTD_window_correctOverflow()
808 else window->lowLimit -= correction; in ZSTD_window_correctOverflow()
816 assert(window->lowLimit <= newCurrent); in ZSTD_window_correctOverflow()
820 window->lowLimit); in ZSTD_window_correctOverflow()
874 if (window->lowLimit < newLowLimit) window->lowLimit = newLowLimit; in ZSTD_window_enforceMaxDist()
878 window->dictLimit = window->lowLimit; in ZSTD_window_enforceMaxDist()
952 window->lowLimit = window->dictLimit; in ZSTD_window_update()
958 …if (window->dictLimit - window->lowLimit < HASH_READ_SIZE) window->lowLimit = window->dictLimit; … in ZSTD_window_update()
[all …]
H A Dzstd_fast.c390 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_fast_extDict_generic() local
391 const U32 dictStartIndex = lowLimit; in ZSTD_compressBlock_fast_extDict_generic()
394 const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit; in ZSTD_compressBlock_fast_extDict_generic()
H A Dzstd_double_fast.c376 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog); in ZSTD_compressBlock_doubleFast_extDict_generic() local
377 const U32 dictStartIndex = lowLimit; in ZSTD_compressBlock_doubleFast_extDict_generic()
379 const U32 prefixStartIndex = (dictLimit > lowLimit) ? dictLimit : lowLimit; in ZSTD_compressBlock_doubleFast_extDict_generic()
H A Dzstd_lazy.c86 U32 const windowValid = ms->window.lowLimit; in ZSTD_insertDUBT1()
175 U32 const dictLowLimit = dms->window.lowLimit; in ZSTD_DUBT_findBetterDictMatch()
176 U32 const dictIndexDelta = ms->window.lowLimit - dictHighLimit; in ZSTD_DUBT_findBetterDictMatch()
498 const U32 lowestValid = ms->window.lowLimit; in ZSTD_HcFindBestMatch_generic()
501 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance; in ZSTD_HcFindBestMatch_generic() local
509 for ( ; (matchIndex>lowLimit) & (nbAttempts>0) ; nbAttempts--) { in ZSTD_HcFindBestMatch_generic()
945 const BYTE* const dictStart = dictBase + ms->window.lowLimit; in ZSTD_compressBlock_lazy_extDict_generic()
H A Dzstd_opt.c394 U32 const windowLow = ms->window.lowLimit; in ZSTD_insertBt1()
552 U32 const dmsLowLimit = dictMode == ZSTD_dictMatchState ? dms->window.lowLimit : 0; in ZSTD_insertBtAndGetAllMatches()
1118 assert(ms->window.dictLimit == ms->window.lowLimit); /* no dictionary */ in ZSTD_initStats_ultra()
1127 ms->window.lowLimit = ms->window.dictLimit; in ZSTD_initStats_ultra()
1160 && (ms->window.dictLimit == ms->window.lowLimit) /* no dictionary */ in ZSTD_compressBlock_btultra2()
H A Dzstd_ldm.c270 U32 const lowestIndex = extDict ? ldmState->window.lowLimit : dictLimit; in ZSTD_ldm_generateSequences_internal()
H A Dzstd_compress.c2614 if (ms->nextToUpdate < ms->window.lowLimit) ms->nextToUpdate = ms->window.lowLimit; in ZSTD_compress_frameChunk()