Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_compress.c421 bounds.lowerBound = ZSTD_minCLevel(); in ZSTD_cParam_getBounds()
426 bounds.lowerBound = ZSTD_WINDOWLOG_MIN; in ZSTD_cParam_getBounds()
431 bounds.lowerBound = ZSTD_HASHLOG_MIN; in ZSTD_cParam_getBounds()
436 bounds.lowerBound = ZSTD_CHAINLOG_MIN; in ZSTD_cParam_getBounds()
441 bounds.lowerBound = ZSTD_SEARCHLOG_MIN; in ZSTD_cParam_getBounds()
446 bounds.lowerBound = ZSTD_MINMATCH_MIN; in ZSTD_cParam_getBounds()
451 bounds.lowerBound = ZSTD_TARGETLENGTH_MIN; in ZSTD_cParam_getBounds()
456 bounds.lowerBound = ZSTD_STRATEGY_MIN; in ZSTD_cParam_getBounds()
461 bounds.lowerBound = 0; in ZSTD_cParam_getBounds()
466 bounds.lowerBound = 0; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h614 if (value < bounds.lowerBound) return 0; in ZSTD_cParam_withinBounds()
/linux/lib/zstd/decompress/
H A Dzstd_decompress.c1730 size_t const min = (size_t)1 << bounds.lowerBound; in ZSTD_DCtx_setMaxWindowSize()
1749 bounds.lowerBound = ZSTD_WINDOWLOG_ABSOLUTEMIN; in ZSTD_dParam_getBounds()
1753 bounds.lowerBound = (int)ZSTD_f_zstd1; in ZSTD_dParam_getBounds()
1758 bounds.lowerBound = (int)ZSTD_bm_buffered; in ZSTD_dParam_getBounds()
1762 bounds.lowerBound = (int)ZSTD_d_validateChecksum; in ZSTD_dParam_getBounds()
1766 bounds.lowerBound = (int)ZSTD_rmd_refSingleDDict; in ZSTD_dParam_getBounds()
1770 bounds.lowerBound = 0; in ZSTD_dParam_getBounds()
1774 bounds.lowerBound = ZSTD_BLOCKSIZE_MAX_MIN; in ZSTD_dParam_getBounds()
1791 if (value < bounds.lowerBound) return 0; in ZSTD_dParam_withinBounds()
/linux/include/linux/
H A Dzstd_lib.h525 int lowerBound; member