Searched refs:cycleLog (Results 1 - 3 of 3) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_compress_internal.h | 955 U32 cycleLog, in ZSTD_window_canOverflowCorrect() 960 U32 const cycleSize = 1u << cycleLog; in ZSTD_window_canOverflowCorrect() 990 U32 cycleLog, in ZSTD_window_needOverflowCorrection() 998 if (ZSTD_window_canOverflowCorrect(window, cycleLog, maxDist, loadedDictEnd, src)) { in ZSTD_window_needOverflowCorrection() 1011 * The least significant cycleLog bits of the indices must remain the same, 1014 MEM_STATIC U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, in ZSTD_window_correctOverflow() argument 1036 U32 const cycleSize = 1u << cycleLog; in ZSTD_window_correctOverflow() 954 ZSTD_window_canOverflowCorrect(ZSTD_window_t const window, U32 cycleLog, U32 maxDist, U32 loadedDictEnd, void const* src) ZSTD_window_canOverflowCorrect() argument 989 ZSTD_window_needOverflowCorrection(ZSTD_window_t const window, U32 cycleLog, U32 maxDist, U32 loadedDictEnd, void const* src, void const* srcEnd) ZSTD_window_needOverflowCorrection() argument
|
H A D | zstd_compress.c | 1294 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() local 1296 if (cycleLog > dictAndWindowLog) in ZSTD_adjustCParams_internal() 1297 cPar.chainLog -= (cycleLog - dictAndWindowLog); in ZSTD_adjustCParams_internal() 3816 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); in ZSTD_overflowCorrectIfNeeded() local 3818 if (ZSTD_window_needOverflowCorrection(ms->window, cycleLog, maxDist, ms->loadedDictEnd, ip, iend)) { in ZSTD_overflowCorrectIfNeeded() 3819 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()
|
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 198 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams() local 199 if (cycleLog > cPar.windowLog) in ZSTD_adjustCParams() 200 cPar.chainLog -= (cycleLog - cPar.windowLog); in ZSTD_adjustCParams()
|
Completed in 20 milliseconds