Lines Matching refs:norm
100 u64 power_limit_uw, u32 *norm)
111 *norm = clamp_t(u32, val, spz->info->min_power_cap,
113 *norm = rounddown(*norm, spz->info->power_cap_step);
115 val = (scale_mw) ? *norm * 1000 : *norm;
155 u64 time_us, u32 *norm)
162 *norm = clamp_t(u32, time_us, spz->info->min_pai, spz->info->max_pai);
163 *norm = rounddown(*norm, spz->info->pai_step);
165 if (time_us != *norm)
168 spz->info->name, time_us, *norm);