Home
last modified time | relevance | path

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

/openbmc/pldm/libpldmresponder/
H A Dbios_integer_attribute.cpp23 integerInfo.lowerBound = entry.at("lower_bound"); in BIOSIntegerAttribute()
30 integerInfo.lowerBound, in BIOSIntegerAttribute()
42 integerInfo.lowerBound, "UPPER_BOUND", integerInfo.upperBound, in BIOSIntegerAttribute()
111 integerInfo.lowerBound, integerInfo.upperBound, in constructEntry()
H A Dbios_table.hpp239 uint64_t lowerBound; member
/openbmc/bios-settings-mgr/src/
H A Dmanager.cpp165 int64_t lowerBound = 0; in validateIntegerOption() local
173 lowerBound = std::get<int64_t>(std::get<1>(integerOptions)); in validateIntegerOption()
185 if ((attrValue < lowerBound) || (attrValue > upperBound)) in validateIntegerOption()
192 ((std::abs(attrValue - lowerBound)) % scalarIncrement) != 0) in validateIntegerOption()
196 "ATTR_VALUE", attrValue, "LOWER_BOUND", lowerBound, in validateIntegerOption()
/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
485 return [lowerBound = std::forward<T>(lowerBound), in set_floor_from_median_sensor_value()
500 if (value == std::clamp(value, lowerBound, upperBound)) in set_floor_from_median_sensor_value()
/openbmc/linux/lib/zstd/compress/
H A Dzstd_compress.c383 bounds.lowerBound = ZSTD_minCLevel(); in ZSTD_cParam_getBounds()
388 bounds.lowerBound = ZSTD_WINDOWLOG_MIN; in ZSTD_cParam_getBounds()
393 bounds.lowerBound = ZSTD_HASHLOG_MIN; in ZSTD_cParam_getBounds()
398 bounds.lowerBound = ZSTD_CHAINLOG_MIN; in ZSTD_cParam_getBounds()
403 bounds.lowerBound = ZSTD_SEARCHLOG_MIN; in ZSTD_cParam_getBounds()
408 bounds.lowerBound = ZSTD_MINMATCH_MIN; in ZSTD_cParam_getBounds()
413 bounds.lowerBound = ZSTD_TARGETLENGTH_MIN; in ZSTD_cParam_getBounds()
418 bounds.lowerBound = ZSTD_STRATEGY_MIN; in ZSTD_cParam_getBounds()
423 bounds.lowerBound = 0; in ZSTD_cParam_getBounds()
428 bounds.lowerBound = 0; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h495 if (value < bounds.lowerBound) return 0; in ZSTD_cParam_withinBounds()
/openbmc/pldm/libpldmresponder/test/
H A Dlibpldmresponder_bios_integer_attribute_test.cpp47 EXPECT_EQ(integerInfo.lowerBound, 1); in TEST_F()
H A Dlibpldmresponder_bios_config_test.cpp167 EXPECT_EQ(integerField.lowerBound, in TEST_F()
H A Dlibpldmresponder_systemspecific_bios_test.cpp174 EXPECT_EQ(integerField.lowerBound, in TEST_F()
/openbmc/linux/lib/zstd/decompress/
H A Dzstd_decompress.c1634 size_t const min = (size_t)1 << bounds.lowerBound; in ZSTD_DCtx_setMaxWindowSize()
1653 bounds.lowerBound = ZSTD_WINDOWLOG_ABSOLUTEMIN; in ZSTD_dParam_getBounds()
1657 bounds.lowerBound = (int)ZSTD_f_zstd1; in ZSTD_dParam_getBounds()
1662 bounds.lowerBound = (int)ZSTD_bm_buffered; in ZSTD_dParam_getBounds()
1666 bounds.lowerBound = (int)ZSTD_d_validateChecksum; in ZSTD_dParam_getBounds()
1670 bounds.lowerBound = (int)ZSTD_rmd_refSingleDDict; in ZSTD_dParam_getBounds()
1686 if (value < bounds.lowerBound) return 0; in ZSTD_dParam_withinBounds()
/openbmc/linux/include/linux/
H A Dzstd_lib.h438 int lowerBound; member