Home | History | Annotate | Download | only in rs6000

Lines Matching refs:ratio

67   TFtype denom, ratio, x, y;
107 ratio = c / d;
108 denom = (c * ratio) + d;
109 /* Choose alternate order of computation if ratio is subnormal. */
110 if (FABS (ratio) > RMIN)
112 x = ((a * ratio) + b) / denom;
113 y = ((b * ratio) - a) / denom;
153 ratio = d / c;
154 denom = (d * ratio) + c;
155 /* Choose alternate order of computation if ratio is subnormal. */
156 if (FABS (ratio) > RMIN)
158 x = ((b * ratio) + a) / denom;
159 y = (b - (a * ratio)) / denom;