Lines Matching full:quotient
668 u64 quotient; in alpha_pll_round_rate() local
670 quotient = rate; in alpha_pll_round_rate()
671 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
672 *l = quotient; in alpha_pll_round_rate()
680 quotient = remainder << ALPHA_SHIFT(alpha_width); in alpha_pll_round_rate()
682 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
685 quotient++; in alpha_pll_round_rate()
687 *a = quotient; in alpha_pll_round_rate()
909 u64 quotient; in alpha_huayra_pll_round_rate() local
911 quotient = rate; in alpha_huayra_pll_round_rate()
912 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
913 *l = quotient; in alpha_huayra_pll_round_rate()
920 quotient = remainder << PLL_HUAYRA_ALPHA_WIDTH; in alpha_huayra_pll_round_rate()
921 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
924 quotient++; in alpha_huayra_pll_round_rate()
928 * of [-0.5, 0.5) so if quotient >= 0.5 then increment the l value in alpha_huayra_pll_round_rate()
931 if (quotient >= BIT(PLL_HUAYRA_ALPHA_WIDTH - 1)) in alpha_huayra_pll_round_rate()
934 *a = quotient; in alpha_huayra_pll_round_rate()
2226 u64 remainder, quotient; in zonda_pll_adjust_l_val() local
2228 quotient = rate; in zonda_pll_adjust_l_val()
2229 remainder = do_div(quotient, prate); in zonda_pll_adjust_l_val()