Home
last modified time | relevance | path

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

/external/parameter-framework/parameter/
DIntegerParameterType.cpp45 …Type::CIntegerParameterType(const string& strName) : base(strName), _uiMin(0), _uiMax(uint32_t(-1)) in CIntegerParameterType()
78 strResult += _bSigned ? CUtility::toString((int32_t)_uiMax) : CUtility::toString(_uiMax); in showProperties()
122 _uiMax = (uint32_t)xmlElement.getAttributeSignedInteger("Max"); in fromXml()
124 signExtend((int32_t&)_uiMax); in fromXml()
127 _uiMax = (1UL << uiSizeInBits) - 1; in fromXml()
139 _uiMax = xmlElement.getAttributeInteger("Max"); in fromXml()
142 _uiMax = (uint32_t)-1L >> (8 * sizeof(uint32_t) - uiSizeInBits); in fromXml()
173 …if (!checkValueAgainstRange<int64_t>(strValue, iData, (int32_t)_uiMin, (int32_t)_uiMax, parameterA… in toBlackboard()
179 …if (!checkValueAgainstRange<uint64_t>(strValue, iData, _uiMin, _uiMax, parameterAccessContext, bVa… in toBlackboard()
228 if (uiUserValue < _uiMin || uiUserValue > _uiMax) { in toBlackboard()
[all …]
DBitParameterType.cpp42 …meterType(const string& strName) : base(strName), _uiBitPos(0), _uiBitSize(0), _uiMax(uint64_t(-1)) in CBitParameterType()
69 strResult += CUtility::toString(_uiMax); in showProperties()
102 _uiMax = xmlElement.getAttributeInteger("Max"); in fromXml()
104 if (_uiMax > getMaxEncodableValue()) { in fromXml()
117 _uiMax = getMaxEncodableValue(); in fromXml()
133 if (uiConvertedValue > _uiMax) { in toBlackboard()
147 strStream << _uiMax << "] for " + getKind(); in toBlackboard()
182 if (uiUserValue > _uiMax) { in toBlackboard()
255 xmlElement.setAttributeString("Max", CUtility::toString(_uiMax)); in toXml()
DBitParameterType.h91 uint64_t _uiMax; variable
DIntegerParameterType.h92 uint32_t _uiMax; variable