Lines Matching refs:j
127 for (Json::Value::ArrayIndex j = 0; j < kThrottlingSeverityCount; ++j) { in ParseSensorInfo() local
128 hot_thresholds[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
129 if (!std::isnan(hot_thresholds[j])) { in ParseSensorInfo()
130 if (hot_thresholds[j] < min) { in ParseSensorInfo()
132 << "Sensor[" << name << "]'s HotThreshold[j" << j in ParseSensorInfo()
133 << "]: " << hot_thresholds[j] << " < " << min; in ParseSensorInfo()
137 min = hot_thresholds[j]; in ParseSensorInfo()
139 LOG(INFO) << "Sensor[" << name << "]'s HotThreshold[" << j in ParseSensorInfo()
140 << "]: " << hot_thresholds[j]; in ParseSensorInfo()
149 for (Json::Value::ArrayIndex j = 0; j < kThrottlingSeverityCount; ++j) { in ParseSensorInfo() local
150 hot_hysteresis[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
151 if (std::isnan(hot_hysteresis[j])) { in ParseSensorInfo()
153 << "Sensor[" << name << "]'s HotHysteresis: " << hot_hysteresis[j]; in ParseSensorInfo()
157 LOG(INFO) << "Sensor[" << name << "]'s HotHysteresis[" << j in ParseSensorInfo()
158 << "]: " << hot_hysteresis[j]; in ParseSensorInfo()
168 for (Json::Value::ArrayIndex j = 0; j < kThrottlingSeverityCount; ++j) { in ParseSensorInfo() local
169 cold_thresholds[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
170 if (!std::isnan(cold_thresholds[j])) { in ParseSensorInfo()
171 if (cold_thresholds[j] > max) { in ParseSensorInfo()
173 << "Sensor[" << name << "]'s ColdThreshold[j" << j in ParseSensorInfo()
174 << "]: " << cold_thresholds[j] << " > " << max; in ParseSensorInfo()
178 max = cold_thresholds[j]; in ParseSensorInfo()
180 LOG(INFO) << "Sensor[" << name << "]'s ColdThreshold[" << j in ParseSensorInfo()
181 << "]: " << cold_thresholds[j]; in ParseSensorInfo()
190 for (Json::Value::ArrayIndex j = 0; j < kThrottlingSeverityCount; ++j) { in ParseSensorInfo() local
191 cold_hysteresis[j] = getFloatFromValue(values[j]); in ParseSensorInfo()
192 if (std::isnan(cold_hysteresis[j])) { in ParseSensorInfo()
195 << "]'s ColdHysteresis: " << cold_hysteresis[j]; in ParseSensorInfo()
199 LOG(INFO) << "Sensor[" << name << "]'s ColdHysteresis[" << j in ParseSensorInfo()
200 << "]: " << cold_hysteresis[j]; in ParseSensorInfo()