Lines Matching refs:tempValue
1062 double tempValue{0}; in readTempSensors() local
1066 tempValue = std::numeric_limits<double>::quiet_NaN(); in readTempSensors()
1073 tempValue = readFile<double>(filePathString + inputSuffix); in readTempSensors()
1087 tempValue = 0; in readTempSensors()
1105 if ((std::isnan(existing->second) && (tempValue == 0)) || in readTempSensors()
1106 ((existing->second == 0) && std::isnan(tempValue))) in readTempSensors()
1111 tempValue = std::numeric_limits<double>::quiet_NaN(); in readTempSensors()
1112 existing->second = tempValue; in readTempSensors()
1114 if (std::isnan(existing->second) || (tempValue > existing->second)) in readTempSensors()
1116 existing->second = tempValue; in readTempSensors()
1122 sensorData[sensorPath] = tempValue; in readTempSensors()
1215 double tempValue{0}; in readPowerSensors() local
1219 tempValue = readFile<double>(filePathString + inputSuffix); in readPowerSensors()
1234 sensorPath, tempValue * std::pow(10, -3) * std::pow(10, -3)); in readPowerSensors()