Lines Matching full:bexp
491 int8_t bExp = 0;
494 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
502 value += ((double)bValue) * std::pow(10.0, bExp);
976 int8_t bExp = 0;
979 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
985 scaleIPMIValueFromDouble(reading, mValue, rExp, bValue, bExp, bSigned);
1037 "bExp={BEXP} bSigned={BSIGNED}",
1041 rExp, "BVALUE", bValue, "BEXP", bExp, "BSIGNED", bSigned);
1166 int8_t bExp = 0;
1169 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
1244 (bValue * std::pow(10.0, bExp))) *
1280 int8_t bExp = 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);
1846 int8_t bExp = 0;
1849 if (!getSensorAttributes(max, min, mValue, rExp, bValue, bExp, bSigned))
1867 // Byte 30 = RRRRBBBB = rExp (signed), bExp (signed)
1891 uint8_t bExpSign = (bExp < 0) ? 1 : 0;
1892 uint8_t bExpBits = bExp & 0x07;
1894 // move rExp and bExp into place