Lines Matching refs:bExp
169 int16_t& bValue, int8_t& bExp, bool& bSigned) in getSensorAttributes() argument
243 bExp = 0; in getSensorAttributes()
248 if (bExp >= maxInt4) in getSensorAttributes()
255 bExp++; in getSensorAttributes()
261 if (bExp <= minInt4) in getSensorAttributes()
268 bExp -= 1; in getSensorAttributes()
279 const uint16_t bValue, const int8_t bExp, const bool bSigned) in scaleIPMIValueFromDouble() argument
282 (value - (bValue * std::pow(10, bExp) * std::pow(10, rExp))) / in scaleIPMIValueFromDouble()
306 int8_t bExp = 0; in getScaledIPMIValue() local
310 result = getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned); in getScaledIPMIValue()
315 return scaleIPMIValueFromDouble(value, mValue, rExp, bValue, bExp, bSigned); in getScaledIPMIValue()