Lines Matching refs:new_summand_sf
621 int new_summand_sf = subsample_power_low_sf[i]; in apply_inter_tes() local
624 if (new_summand_sf > total_power_low_sf) { in apply_inter_tes()
625 int diff = fMin(DFRACT_BITS - 1, new_summand_sf - total_power_low_sf); in apply_inter_tes()
627 total_power_low_sf = new_summand_sf; in apply_inter_tes()
628 } else if (new_summand_sf < total_power_low_sf) { in apply_inter_tes()
630 fMin(DFRACT_BITS - 1, total_power_low_sf - new_summand_sf); in apply_inter_tes()
636 new_summand_sf = subsample_power_high_sf[i]; in apply_inter_tes()
637 if (new_summand_sf > total_power_high_sf) { in apply_inter_tes()
639 fMin(DFRACT_BITS - 1, new_summand_sf - total_power_high_sf); in apply_inter_tes()
640 total_power_high_sf = new_summand_sf; in apply_inter_tes()
641 } else if (new_summand_sf < total_power_high_sf) { in apply_inter_tes()
643 fMin(DFRACT_BITS - 1, total_power_high_sf - new_summand_sf); in apply_inter_tes()
736 int new_summand_sf = subsample_power_high_sf[i]; /* + gain_pow2_sf; */ in apply_inter_tes() local
737 if (new_summand_sf > total_power_high_after_sf) { in apply_inter_tes()
739 fMin(DFRACT_BITS - 1, new_summand_sf - total_power_high_after_sf); in apply_inter_tes()
740 total_power_high_after_sf = new_summand_sf; in apply_inter_tes()
741 } else if (new_summand_sf < total_power_high_after_sf) { in apply_inter_tes()
742 subsample_power_high[i] >>= total_power_high_after_sf - new_summand_sf; in apply_inter_tes()