Home
last modified time | relevance | path

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

/hardware/google/pixel/thermal/utils/
Dthermal_info.h197 ThrottlingArray max_alloc_power; member
Dthermal_info.cpp842 std::array<float, kThrottlingSeverityCount> max_alloc_power; in ParseSensorThrottlingInfo() local
843 max_alloc_power.fill(NAN); in ParseSensorThrottlingInfo()
896 !getFloatFromJsonValues(sensor["PIDInfo"]["MaxAllocPower"], &max_alloc_power, 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.cpp275 if (power_budget > sensor_info.throttling_info->max_alloc_power[target_state]) { in updatePowerBudget()
276 power_budget = sensor_info.throttling_info->max_alloc_power[target_state]; in updatePowerBudget()
/hardware/google/pixel/thermal/
DThermal.cpp417 *dump_buf << name_info_pair.second.throttling_info->max_alloc_power[i] << " "; in dumpThrottlingInfo()