Lines Matching refs:quotient
518 u64 quotient; in alpha_pll_round_rate() local
520 quotient = rate; in alpha_pll_round_rate()
521 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
522 *l = quotient; in alpha_pll_round_rate()
530 quotient = remainder << ALPHA_SHIFT(alpha_width); in alpha_pll_round_rate()
532 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
535 quotient++; in alpha_pll_round_rate()
537 *a = quotient; in alpha_pll_round_rate()
725 u64 quotient; in alpha_huayra_pll_round_rate() local
727 quotient = rate; in alpha_huayra_pll_round_rate()
728 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
729 *l = quotient; in alpha_huayra_pll_round_rate()
736 quotient = remainder << PLL_HUAYRA_ALPHA_WIDTH; in alpha_huayra_pll_round_rate()
737 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
740 quotient++; in alpha_huayra_pll_round_rate()
747 if (quotient >= BIT(PLL_HUAYRA_ALPHA_WIDTH - 1)) in alpha_huayra_pll_round_rate()
750 *a = quotient; in alpha_huayra_pll_round_rate()