Home
last modified time | relevance | path

Searched refs:windowLog (Results 1 – 4 of 4) sorted by relevance

/linux-4.19.296/lib/zstd/
Dcompress.c92 size_t const blockSize = MIN(ZSTD_BLOCKSIZE_ABSOLUTEMAX, (size_t)1 << cParams.windowLog); in ZSTD_CCtxWorkspaceBound()
98 U32 const hashLog3 = (cParams.searchLength > 3) ? 0 : MIN(ZSTD_HASHLOG3_MAX, cParams.windowLog); in ZSTD_CCtxWorkspaceBound()
155 CLAMPCHECK(cParams.windowLog, ZSTD_WINDOWLOG_MIN, ZSTD_WINDOWLOG_MAX); in ZSTD_checkCParams()
191 if (cPar.windowLog > srcLog) in ZSTD_adjustCParams()
192 cPar.windowLog = srcLog; in ZSTD_adjustCParams()
195 if (cPar.hashLog > cPar.windowLog) in ZSTD_adjustCParams()
196 cPar.hashLog = cPar.windowLog; in ZSTD_adjustCParams()
199 if (cycleLog > cPar.windowLog) in ZSTD_adjustCParams()
200 cPar.chainLog -= (cycleLog - cPar.windowLog); in ZSTD_adjustCParams()
203 if (cPar.windowLog < ZSTD_WINDOWLOG_ABSOLUTEMIN) in ZSTD_adjustCParams()
[all …]
Ddecompress.c247 U32 const windowLog = (wlByte >> 3) + ZSTD_WINDOWLOG_ABSOLUTEMIN; in ZSTD_getFrameParams() local
248 if (windowLog > ZSTD_WINDOWLOG_MAX) in ZSTD_getFrameParams()
250 windowSize = (1U << windowLog); in ZSTD_getFrameParams()
/linux-4.19.296/fs/btrfs/
Dzstd.c29 if (params.cParams.windowLog > ZSTD_BTRFS_MAX_WINDOWLOG) in zstd_get_btrfs_parameters()
30 params.cParams.windowLog = ZSTD_BTRFS_MAX_WINDOWLOG; in zstd_get_btrfs_parameters()
/linux-4.19.296/include/linux/
Dzstd.h146 unsigned int windowLog; member