Lines Matching refs:bValue

501     int16_t bValue = 0;  in calculateValue()  local
506 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in calculateValue()
514 value += ((double)bValue) * std::pow(10.0, bExp); in calculateValue()
988 int16_t bValue = 0; in ipmiSenGetSensorReading() local
993 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in ipmiSenGetSensorReading()
999 scaleIPMIValueFromDouble(reading, mValue, rExp, bValue, bExp, bSigned); in ipmiSenGetSensorReading()
1055 rExp, "BVALUE", bValue, "BEXP", bExp, "BSIGNED", bSigned); in ipmiSenGetSensorReading()
1180 int16_t bValue = 0; in ipmiSenSetSensorThresholds() local
1185 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in ipmiSenSetSensorThresholds()
1266 (bValue * std::pow(10.0, bExp))) * in ipmiSenSetSensorThresholds()
1298 int16_t bValue = 0; in getIPMIThresholds() local
1303 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in getIPMIThresholds()
1323 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1333 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1353 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1363 value, mValue, rExp, bValue, bExp, bSigned); in getIPMIThresholds()
1873 int16_t bValue = 0; in constructSensorSdr() local
1877 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned)) in constructSensorSdr()
1907 record.body.bLsb = bValue & 0xFF; in constructSensorSdr()
1909 uint8_t bBitSign = (bValue < 0) ? 1 : 0; in constructSensorSdr()
1910 uint8_t bBitNine = (bValue & 0x0100) >> 8; in constructSensorSdr()