Lines Matching refs:mValue

489     int16_t mValue = 0;  in calculateValue()  local
495 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in calculateValue()
502 value *= ((double)mValue); in calculateValue()
974 int16_t mValue = 0; in ipmiSenGetSensorReading() local
980 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in ipmiSenGetSensorReading()
986 scaleIPMIValueFromDouble(reading, mValue, rExp, bValue, bExp, bSigned); in ipmiSenGetSensorReading()
1039 << ", Coefficients mValue=" << static_cast<int>(mValue) in ipmiSenGetSensorReading()
1165 int16_t mValue = 0; in ipmiSenSetSensorThresholds() local
1171 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in ipmiSenSetSensorThresholds()
1245 double valueToSet = ((mValue * std::get<thresholdValue>(property)) + in ipmiSenSetSensorThresholds()
1279 int16_t mValue = 0; in getIPMIThresholds() local
1285 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in getIPMIThresholds()
1303 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1313 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1331 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1341 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1848 int16_t mValue = 0; in constructSensorSdr() local
1854 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in constructSensorSdr()
1875 record.body.m_lsb = mValue & 0xFF; in constructSensorSdr()
1877 uint8_t mBitSign = (mValue < 0) ? 1 : 0; in constructSensorSdr()
1878 uint8_t mBitNine = (mValue & 0x0100) >> 8; in constructSensorSdr()