Home
last modified time | relevance | path

Searched refs:upperBound (Results 1 – 11 of 11) sorted by relevance

/openbmc/pldm/libpldmresponder/
H A Dbios_integer_attribute.cpp24 integerInfo.upperBound = entry.at("upper_bound"); in BIOSIntegerAttribute()
31 integerInfo.upperBound, in BIOSIntegerAttribute()
42 integerInfo.lowerBound, "UPPER_BOUND", integerInfo.upperBound, in BIOSIntegerAttribute()
111 integerInfo.lowerBound, integerInfo.upperBound, in constructEntry()
H A Dbios_table.hpp240 uint64_t upperBound; member
/openbmc/phosphor-fan-presence/control/
H A Dactions.hpp482 Action set_floor_from_median_sensor_value(T&& lowerBound, T&& upperBound, in set_floor_from_median_sensor_value() argument
486 upperBound = std::forward<T>(upperBound), in set_floor_from_median_sensor_value()
500 if (value == std::clamp(value, lowerBound, upperBound)) in set_floor_from_median_sensor_value()
/openbmc/bios-settings-mgr/src/
H A Dmanager.cpp166 int64_t upperBound = 0; in validateIntegerOption() local
177 upperBound = std::get<int64_t>(std::get<1>(integerOptions)); in validateIntegerOption()
185 if ((attrValue < lowerBound) || (attrValue > upperBound)) in validateIntegerOption()
/openbmc/linux/lib/zstd/compress/
H A Dzstd_compress.c384 bounds.upperBound = ZSTD_maxCLevel(); in ZSTD_cParam_getBounds()
389 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_cParam_getBounds()
394 bounds.upperBound = ZSTD_HASHLOG_MAX; in ZSTD_cParam_getBounds()
399 bounds.upperBound = ZSTD_CHAINLOG_MAX; in ZSTD_cParam_getBounds()
404 bounds.upperBound = ZSTD_SEARCHLOG_MAX; in ZSTD_cParam_getBounds()
409 bounds.upperBound = ZSTD_MINMATCH_MAX; in ZSTD_cParam_getBounds()
414 bounds.upperBound = ZSTD_TARGETLENGTH_MAX; in ZSTD_cParam_getBounds()
419 bounds.upperBound = ZSTD_STRATEGY_MAX; in ZSTD_cParam_getBounds()
424 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
429 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h496 if (value > bounds.upperBound) return 0; in ZSTD_cParam_withinBounds()
/openbmc/pldm/libpldmresponder/test/
H A Dlibpldmresponder_systemspecific_bios_test.cpp176 EXPECT_EQ(integerField.upperBound, in TEST_F()
313 EXPECT_EQ(integerField.upperBound, 30); in TEST_F()
H A Dlibpldmresponder_bios_integer_attribute_test.cpp48 EXPECT_EQ(integerInfo.upperBound, 15); in TEST_F()
H A Dlibpldmresponder_bios_config_test.cpp169 EXPECT_EQ(integerField.upperBound, in TEST_F()
/openbmc/linux/lib/zstd/decompress/
H A Dzstd_decompress.c1635 size_t const max = (size_t)1 << bounds.upperBound; in ZSTD_DCtx_setMaxWindowSize()
1654 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_dParam_getBounds()
1658 bounds.upperBound = (int)ZSTD_f_zstd1_magicless; in ZSTD_dParam_getBounds()
1663 bounds.upperBound = (int)ZSTD_bm_stable; in ZSTD_dParam_getBounds()
1667 bounds.upperBound = (int)ZSTD_d_ignoreChecksum; in ZSTD_dParam_getBounds()
1671 bounds.upperBound = (int)ZSTD_rmd_refMultipleDDicts; in ZSTD_dParam_getBounds()
1687 if (value > bounds.upperBound) return 0; in ZSTD_dParam_withinBounds()
/openbmc/linux/include/linux/
H A Dzstd_lib.h439 int upperBound; member