Lines Matching defs:new_min
28 * new_min = ((((average_power * slope) >> 16) + offset) >> 16) + min_value
29 * new_value = max(new_value, max(new_min, 0))
66 * new_min = ref_value * slope + offset
68 * ref_value is the value of the reference control. If new_min is
71 * new_target = max (new_target, new_min >> 16)
468 s32 new_min;
472 new_min = (average_power * correction->slope) >> 16;
473 new_min += correction->offset;
474 new_min = (new_min >> 16) + min;
476 return max3(new_setpoint, new_min, 0);
481 s32 new_min, value, new_setpoint;
486 new_min = value * pm121_connection->correction.slope;
487 new_min += pm121_connection->correction.offset;
488 if (new_min > 0) {
489 new_setpoint = max(setpoint, (new_min >> 16));