Home
last modified time | relevance | path

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

/freebsd-12.1/sys/contrib/zstd/programs/
H A Dzstdcli.c852 { int const maxCLevel = ultra ? ZSTD_maxCLevel() : ZSTDCLI_CLEVEL_MAX; in main() local
853 if (cLevel > maxCLevel) { in main()
854 … DISPLAYLEVEL(2, "Warning : compression level higher than max, reduced to %i \n", maxCLevel); in main()
855 cLevel = maxCLevel; in main()
/freebsd-12.1/sys/contrib/zstd/contrib/pzstd/
H A DOptions.cpp395 unsigned maxCLevel = in parse() local
397 if (compressionLevel > maxCLevel || compressionLevel == 0) { in parse()