Lines Matching refs:y
133 double y,hi,lo,c,t,e,hxs,hfx,r1; in expm1() local
139 if(xsb==0) y=x; else y= -x; /* y = |x| */ in expm1()
198 y = one-(e-x); in expm1()
199 GET_HIGH_WORD(high,y); in expm1()
200 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */ in expm1()
201 return y-one; in expm1()
207 y = t-(e-x); in expm1()
208 GET_HIGH_WORD(high,y); in expm1()
209 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */ in expm1()
213 y = x-(e+t); in expm1()
214 y += one; in expm1()
215 GET_HIGH_WORD(high,y); in expm1()
216 SET_HIGH_WORD(y,high+(k<<20)); /* add k to y's exponent */ in expm1()
219 return y; in expm1()