Searched refs:cycleLog (Results 1 – 2 of 2) sorted by relevance
| /linux/lib/zstd/compress/ |
| H A D | zstd_compress_internal.h | 1090 U32 cycleLog, in ZSTD_window_canOverflowCorrect() argument 1095 U32 const cycleSize = 1u << cycleLog; in ZSTD_window_canOverflowCorrect() 1125 U32 cycleLog, in ZSTD_window_needOverflowCorrection() argument 1133 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) { in ZSTD_window_needOverflowCorrection() 1151 U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, in ZSTD_window_correctOverflow() argument 1173 U32 const cycleSize = 1u << cycleLog; in ZSTD_window_correctOverflow()
|
| H A D | zstd_compress.c | 1499 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() local 1501 if (cycleLog > dictAndWindowLog) in ZSTD_adjustCParams_internal() 1502 cPar.chainLog -= (cycleLog - dictAndWindowLog); in ZSTD_adjustCParams_internal() 4446 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); in ZSTD_overflowCorrectIfNeeded() local 4448 …if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->loadedDictEnd, ip, iend)… in ZSTD_overflowCorrectIfNeeded() 4449 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()
|