Lines Matching defs:bValue
489 int16_t bValue = 0;
494 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
502 value += ((double)bValue) * std::pow(10.0, bExp);
974 int16_t bValue = 0;
979 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
985 scaleIPMIValueFromDouble(reading, mValue, rExp, bValue, bExp, bSigned);
1036 "Coefficients mValue={MVALUE} rExp={REXP} bValue={BVALUE} "
1041 rExp, "BVALUE", bValue, "BEXP", bExp, "BSIGNED", bSigned);
1164 int16_t bValue = 0;
1169 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
1244 (bValue * std::pow(10.0, bExp))) *
1278 int16_t bValue = 0;
1283 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
1301 value, mValue, rExp, bValue, bExp, bSigned);
1311 value, mValue, rExp, bValue, bExp, bSigned);
1329 value, mValue, rExp, bValue, bExp, bSigned);
1339 value, mValue, rExp, bValue, bExp, bSigned);
1845 int16_t bValue = 0;
1849 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
1879 record.body.bLsb = bValue & 0xFF;
1881 uint8_t bBitSign = (bValue < 0) ? 1 : 0;
1882 uint8_t bBitNine = (bValue & 0x0100) >> 8;