Lines Matching refs:nom
884 * @nom: nominator
893 static void avivo_reduce_ratio(unsigned *nom, unsigned *den,
899 tmp = gcd(*nom, *den);
900 *nom /= tmp;
904 if (*nom < nom_min) {
905 tmp = DIV_ROUND_UP(nom_min, *nom);
906 *nom *= tmp;
913 *nom *= tmp;
921 * @nom: nominator
932 static void avivo_get_fb_ref_div(unsigned nom, unsigned den, unsigned post_div,
941 *fb_div = DIV_ROUND_CLOSEST(nom * *ref_div * post_div, den);
978 unsigned nom, den;
1038 nom = target_clock;
1042 avivo_reduce_ratio(&nom, &den, fb_div_min, post_div_min);
1053 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max,
1068 avivo_get_fb_ref_div(nom, den, post_div, fb_div_max, ref_div_max,