Lines Matching refs:e

78 	int hx, hy, hz, ex, ey, ez, exy, sxy, sz, e, ibit;  in __fma()  local
167 e = sxy; sxy = sz; sz = e; in __fma()
168 e = exy; exy = ez; ez = e; in __fma()
169 e = xy0; xy0 = z0; z0 = e; in __fma()
170 e = xy1; xy1 = z1; z1 = e; in __fma()
176 e = ez - exy; in __fma()
177 if (e > 116) { in __fma()
180 } else if (e >= 96) { in __fma()
181 sticky = xy3 | xy2 | xy1 | ((xy0 << 1) << (127 - e)); in __fma()
182 xy3 = xy0 >> (e - 96); in __fma()
186 } else if (e >= 64) { in __fma()
187 sticky = xy3 | xy2 | ((xy1 << 1) << (95 - e)); in __fma()
188 xy3 = (xy1 >> (e - 64)) | ((xy0 << 1) << (95 - e)); in __fma()
191 xy2 = xy0 >> (e - 64); in __fma()
193 } else if (e >= 32) { in __fma()
194 sticky = xy3 | ((xy2 << 1) << (63 - e)); in __fma()
195 xy3 = (xy2 >> (e - 32)) | ((xy1 << 1) << (63 - e)); in __fma()
198 xy2 = (xy1 >> (e - 32)) | ((xy0 << 1) << (63 - e)); in __fma()
199 xy1 = xy0 >> (e - 32); in __fma()
201 } else if (e) { in __fma()
202 sticky = (xy3 << 1) << (31 - e); in __fma()
203 xy3 = (xy3 >> e) | ((xy2 << 1) << (31 - e)); in __fma()
206 xy2 = (xy2 >> e) | ((xy1 << 1) << (31 - e)); in __fma()
207 xy1 = (xy1 >> e) | ((xy0 << 1) << (31 - e)); in __fma()
208 xy0 >>= e; in __fma()
225 e = (z3 < xy3); in __fma()
227 if (e) { in __fma()
229 e = (z2 <= xy2); in __fma()
231 e = (z2 < xy2); in __fma()
233 if (e) { in __fma()
235 e = (z1 <= xy1); in __fma()
237 e = (z1 < xy1); in __fma()
239 if (e) in __fma()
245 e = 1 - ez; in __fma()
246 if (e > 56) { in __fma()
249 } else if (e >= 32) { in __fma()
250 sticky = z3 | z2 | ((z1 << 1) << (63 - e)); in __fma()
251 z2 = (z1 >> (e - 32)) | ((z0 << 1) << (63 - e)); in __fma()
254 z1 = z0 >> (e - 32); in __fma()
257 sticky = z3 | (z2 << 1) << (31 - e); in __fma()
258 z2 = (z2 >> e) | ((z1 << 1) << (31 - e)); in __fma()
261 z1 = (z1 >> e) | ((z0 << 1) << (31 - e)); in __fma()
262 z0 >>= e; in __fma()
405 long double e; in __fma() member
412 xx.e = (long double) x; in __fma()
413 yy.e = (long double) y; in __fma()
414 zz.e = (long double) z; in __fma()
424 return ((double) (xx.e * yy.e + zz.e)); in __fma()
427 return ((double) (xx.e + zz.e)); in __fma()
439 xe = xx.e; in __fma()
441 xhi = xx.e; /* hi 32 bits */ in __fma()
443 ye = yy.e; in __fma()
445 yhi = yy.e; in __fma()
451 xhi = ye + zz.e; in __fma()
453 xlo = (zz.e - yhi) + (ye - (xhi - yhi)); in __fma()
464 yy.e = yhi + xhi; in __fma()
465 ylo = (yhi - yy.e) + xhi; /* now (yy.e,ylo) = xhi + yhi */ in __fma()
470 xx.e = ylo + xlo; in __fma()
476 yy.e += xx.e; in __fma()
490 return ((double) yy.e); in __fma()