Lines Matching refs:res

106 	double		x, y, res;  in __vhypot()  local
141 if (hx0 == 0x7ff00000 && lx == 0) res = x == y ? y : x; in __vhypot()
142 else if (hy0 == 0x7ff00000 && ly == 0) res = x == y ? x : y; in __vhypot()
143 else res = x + y; in __vhypot()
144 RETURN (res) in __vhypot()
158 res = (x_hi * x_hi + y_hi * y_hi); in __vhypot()
159 res += ((x + x_hi) * x_lo + (y + y_hi) * y_lo); in __vhypot()
161 res = sqrt (res); in __vhypot()
163 res = D2ONP1022 * res; in __vhypot()
164 RETURN (res) in __vhypot()
183 if (hx0 == 0x7ff00000 && lx == 0) res = x == y ? y : x; in __vhypot()
184 else if (hy0 == 0x7ff00000 && ly == 0) res = x == y ? x : y; in __vhypot()
185 else res = x + y; in __vhypot()
186 RETURN (res) in __vhypot()
200 res = (x_hi * x_hi + y_hi * y_hi); in __vhypot()
201 res += ((x + x_hi) * x_lo + (y + y_hi) * y_lo); in __vhypot()
203 res = sqrt (res); in __vhypot()
205 res = D2ONP1022 * res; in __vhypot()
206 RETURN (res) in __vhypot()
226 res = (x_hi * x_hi + y_hi * y_hi); in __vhypot()
227 res += ((x + x_hi) * x_lo + (y + y_hi) * y_lo); in __vhypot()
229 res = sqrt(res); in __vhypot()
231 res = D2ONM1022 * res; in __vhypot()
232 RETURN (res) in __vhypot()
268 if (hx0 == 0x7ff00000 && lx == 0) res = x == y ? y : x; in __vhypot()
269 else if (hy0 == 0x7ff00000 && ly == 0) res = x == y ? x : y; in __vhypot()
270 else res = x + y; in __vhypot()
271 *pz = res; in __vhypot()
286 res = (x_hi * x_hi + y_hi * y_hi); in __vhypot()
287 res += ((x + x_hi) * x_lo + (y + y_hi) * y_lo); in __vhypot()
289 res = sqrt (res); in __vhypot()
291 res = D2ONP1022 * res; in __vhypot()
292 *pz = res; in __vhypot()
312 res = (x_hi * x_hi + y_hi * y_hi); in __vhypot()
313 res += ((x + x_hi) * x_lo + (y + y_hi) * y_lo); in __vhypot()
315 res = sqrt(res); in __vhypot()
317 res = D2ONM1022 * res; in __vhypot()
318 *pz = res; in __vhypot()
332 res = (x_hi * x_hi + y_hi * y_hi); in __vhypot()
333 res += ((x + x_hi) * x_lo + (y + y_hi) * y_lo); in __vhypot()
335 res = sqrt(res); in __vhypot()
339 res = scl * res; in __vhypot()
340 *pz = res; in __vhypot()