Home
last modified time | relevance | path

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

/ohos5.0/foundation/multimedia/image_framework/plugins/manager/src/framework/
H A Dcapability.cpp267 uint32_t lowerBound = 0; in AnalyzeUint32Range() local
268 … if (JsonHelper::GetUint32Value(valueArray[AttrData::LOWER_BOUND_INDEX], lowerBound) != SUCCESS) { in AnalyzeUint32Range()
269 IMAGE_LOGE("fail to analyze uint32 value of lowerBound: %{public}u.", lowerBound); in AnalyzeUint32Range()
279 …"AnalyzeUint32Range: get lowerBound: %{public}u, upperBound: %{public}u.", lowerBound, upperBound); in AnalyzeUint32Range()
280 if (attrData.SetData(lowerBound, upperBound) != SUCCESS) { in AnalyzeUint32Range()
/ohos5.0/foundation/multimedia/image_framework/plugins/manager/src/common/
H A Dattr_data.cpp79 AttrData::AttrData(uint32_t lowerBound, uint32_t upperBound) : type_(AttrDataType::ATTR_DATA_UINT32… in AttrData() argument
81 if (lowerBound > upperBound) { in AttrData()
85 value_.uint32Rang[LOWER_BOUND_INDEX] = lowerBound; in AttrData()
230 uint32_t AttrData::SetData(uint32_t lowerBound, uint32_t upperBound) in SetData() argument
232 if (lowerBound > upperBound) { in SetData()
234 lowerBound, upperBound); in SetData()
239 value_.uint32Rang[LOWER_BOUND_INDEX] = lowerBound; in SetData()
/ohos5.0/foundation/multimedia/image_framework/plugins/manager/include/
H A Dattr_data.h43 AttrData(uint32_t lowerBound, uint32_t upperBound);
55 uint32_t SetData(uint32_t lowerBound, uint32_t upperBound);
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/utils/
H A Dutils.h248 inline bool InRegion(double lowerBound, double upperBound, double destNum) in InRegion() argument
250 return LessOrEqual(lowerBound, destNum) && LessOrEqual(destNum, upperBound); in InRegion()