Searched refs:cycleLog (Results 1 – 2 of 2) sorted by relevance
826 MEM_STATIC U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, in ZSTD_window_correctOverflow() argument848 U32 const cycleMask = (1U << cycleLog) - 1; in ZSTD_window_correctOverflow()852 U32 const currentCycle1 = currentCycle0 == 0 ? (1U << cycleLog) : currentCycle0; in ZSTD_window_correctOverflow()
1177 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() local1179 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() local2765 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()