Lines Matching refs:nom
874 * @nom: nominator
883 static void avivo_reduce_ratio(unsigned *nom, unsigned *den,
889 tmp = gcd(*nom, *den);
890 *nom /= tmp;
894 if (*nom < nom_min) {
895 tmp = DIV_ROUND_UP(nom_min, *nom);
896 *nom *= tmp;
903 *nom *= tmp;
911 * @nom: nominator
922 static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div,
931 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den);
968 unsigned nom, den;
1028 nom = target_clock;
1032 avivo_reduce_ratio(&nom, &den, fb_div_min, post_div_min);
1043 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max,
1058 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max, ref_div_max,