Lines Matching refs:ratio
57 TFtype denom, ratio, x, y;
97 ratio = c / d;
98 denom = (c * ratio) + d;
99 /* Choose alternate order of computation if ratio is subnormal. */
100 if (FABS (ratio) > RMIN)
102 x = ((a * ratio) + b) / denom;
103 y = ((b * ratio) - a) / denom;
143 ratio = d / c;
144 denom = (d * ratio) + c;
145 /* Choose alternate order of computation if ratio is subnormal. */
146 if (FABS (ratio) > RMIN)
148 x = ((b * ratio) + a) / denom;
149 y = (b - (a * ratio)) / denom;