Lines Matching refs:quotient
419 u64 quotient; in alpha_pll_round_rate() local
421 quotient = rate; in alpha_pll_round_rate()
422 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
423 *l = quotient; in alpha_pll_round_rate()
431 quotient = remainder << ALPHA_SHIFT(alpha_width); in alpha_pll_round_rate()
433 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
436 quotient++; in alpha_pll_round_rate()
438 *a = quotient; in alpha_pll_round_rate()
626 u64 quotient; in alpha_huayra_pll_round_rate() local
628 quotient = rate; in alpha_huayra_pll_round_rate()
629 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
630 *l = quotient; in alpha_huayra_pll_round_rate()
637 quotient = remainder << PLL_HUAYRA_ALPHA_WIDTH; in alpha_huayra_pll_round_rate()
638 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
641 quotient++; in alpha_huayra_pll_round_rate()
648 if (quotient >= BIT(PLL_HUAYRA_ALPHA_WIDTH - 1)) in alpha_huayra_pll_round_rate()
651 *a = quotient; in alpha_huayra_pll_round_rate()