Home
last modified time | relevance | path

Searched refs:i_max (Results 1 – 4 of 4) sorted by relevance

/hardware/google/pixel/thermal/utils/
Dthermal_info.h196 ThrottlingArray i_max; member
Dthermal_info.cpp840 std::array<float, kThrottlingSeverityCount> i_max; in ParseSensorThrottlingInfo() local
841 i_max.fill(NAN); in ParseSensorThrottlingInfo()
889 !getFloatFromJsonValues(sensor["PIDInfo"]["I_Max"], &i_max, false, false)) { in ParseSensorThrottlingInfo()
943 std::isnan(k_d[j]) || std::isnan(i_max[j]) || std::isnan(max_alloc_power[j]) || in ParseSensorThrottlingInfo()
1028 throttling_info->reset(new ThrottlingInfo{k_po, k_pu, k_i, k_d, i_max, max_alloc_power, in ParseSensorThrottlingInfo()
Dthermal_throttling.cpp243 if (fabsf(throttling_status.i_budget) > sensor_info.throttling_info->i_max[target_state]) { in updatePowerBudget()
244 throttling_status.i_budget = sensor_info.throttling_info->i_max[target_state] * in updatePowerBudget()
/hardware/google/pixel/thermal/
DThermal.cpp412 *dump_buf << name_info_pair.second.throttling_info->i_max[i] << " "; in dumpThrottlingInfo()