Searched refs:cycleLog (Results 1 – 3 of 3) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_compress_internal.h | 843 MEM_STATIC U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, in ZSTD_window_correctOverflow() argument 865 U32 const cycleMask = (1U << cycleLog) - 1; in ZSTD_window_correctOverflow() 869 U32 const currentCycle1 = currentCycle0 == 0 ? (1U << cycleLog) : currentCycle0; in ZSTD_window_correctOverflow()
|
| H A D | zstd_compress.c | 1217 U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() local 1219 if (cycleLog > dictAndWindowLog) in ZSTD_adjustCParams_internal() 1220 cPar.chainLog -= (cycleLog - dictAndWindowLog); in ZSTD_adjustCParams_internal() 2815 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); in ZSTD_overflowCorrectIfNeeded() local 2816 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 10682 MEM_STATIC U32 ZSTD_window_correctOverflow(ZSTD_window_t* window, U32 cycleLog, in ZSTD_window_correctOverflow() argument 10704 U32 const cycleMask = (1U << cycleLog) - 1; in ZSTD_window_correctOverflow() 10708 U32 const currentCycle1 = currentCycle0 == 0 ? (1U << cycleLog) : currentCycle0; in ZSTD_window_correctOverflow() 14137 { U32 const cycleLog = ZSTD_cycleLog(cPar.chainLog, cPar.strategy); in ZSTD_adjustCParams_internal() local 14138 if (cycleLog > cPar.windowLog) in ZSTD_adjustCParams_internal() 14139 cPar.chainLog -= (cycleLog - cPar.windowLog); in ZSTD_adjustCParams_internal() 15643 U32 const cycleLog = ZSTD_cycleLog(params->cParams.chainLog, params->cParams.strategy); in ZSTD_overflowCorrectIfNeeded() local 15644 U32 const correction = ZSTD_window_correctOverflow(&ms->window, cycleLog, maxDist, ip); in ZSTD_overflowCorrectIfNeeded()
|