Home
last modified time | relevance | path

Searched refs:cycleLog (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/lib/zstd/compress/
Dzstd_compress_internal.h826 MEM_STATIC U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, in ZSTD_window_correctOverflow() argument
848 U32 const cycleMask = (1U << cycleLog) - 1; in ZSTD_window_correctOverflow()
852 U32 const currentCycle1 = currentCycle0 == 0 ? (1U << cycleLog) : currentCycle0; in ZSTD_window_correctOverflow()
Dzstd_compress.c1177 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() local
1179 if (cycleLog > dictAndWindowLog) in ZSTD_adjustCParams_internal()
1180 cPar.chainLog -= (cycleLog - dictAndWindowLog); in ZSTD_adjustCParams_internal()
2764 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); in ZSTD_overflowCorrectIfNeeded() local
2765 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()