Lines Matching refs:quotient
417 u64 quotient; in alpha_pll_round_rate() local
419 quotient = rate; in alpha_pll_round_rate()
420 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
421 *l = quotient; in alpha_pll_round_rate()
429 quotient = remainder << ALPHA_SHIFT(alpha_width); in alpha_pll_round_rate()
431 remainder = do_div(quotient, prate); in alpha_pll_round_rate()
434 quotient++; in alpha_pll_round_rate()
436 *a = quotient; in alpha_pll_round_rate()
623 u64 quotient; in alpha_huayra_pll_round_rate() local
625 quotient = rate; in alpha_huayra_pll_round_rate()
626 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
627 *l = quotient; in alpha_huayra_pll_round_rate()
634 quotient = remainder << PLL_HUAYRA_ALPHA_WIDTH; in alpha_huayra_pll_round_rate()
635 remainder = do_div(quotient, prate); in alpha_huayra_pll_round_rate()
638 quotient++; in alpha_huayra_pll_round_rate()
645 if (quotient >= BIT(PLL_HUAYRA_ALPHA_WIDTH - 1)) in alpha_huayra_pll_round_rate()
648 *a = quotient; in alpha_huayra_pll_round_rate()