Lines Matching refs:hot_thresholds
1137 std::array<float, kThrottlingSeverityCount> hot_thresholds; in ParseSensorInfo() local
1138 hot_thresholds.fill(NAN); in ParseSensorInfo()
1156 hot_thresholds[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
1157 if (!std::isnan(hot_thresholds[j])) { in ParseSensorInfo()
1158 if (hot_thresholds[j] < min) { in ParseSensorInfo()
1161 << "]: " << hot_thresholds[j] << " < " << min; in ParseSensorInfo()
1165 min = hot_thresholds[j]; in ParseSensorInfo()
1168 << "]: " << hot_thresholds[j]; in ParseSensorInfo()
1194 if (std::isnan(hot_thresholds[j])) { in ParseSensorInfo()
1198 if (std::isnan(hot_thresholds[k])) { in ParseSensorInfo()
1200 } else if (hot_thresholds[j] > (hot_thresholds[k] - hot_hysteresis[k])) { in ParseSensorInfo()
1369 .hot_thresholds = hot_thresholds, in ParseSensorInfo()