1 /* e_fmodl.c -- long double version of e_fmod.c.
2 * Conversion to IEEE quad long double by Jakub Jelinek, jj@ultra.linux.cz.
5 * ====================================================
6 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8 * Developed at SunPro, a Sun Microsystems, Inc. business.
9 * Permission to use, copy, modify, and distribute this
10 * software is freely granted, provided that this notice
12 * ====================================================
17 * returns x REM p = x - [x/p]*p as if in infinite
18 * precise arithmetic, where [x/p] is the (infinite bit)
19 * integer nearest x/p (in half way case choose the even one).
21 * Based on fmodl() return x-[x/p]chopped*p exactlp.
24 #include "quadmath-imp.h"
26 static const __float128 zero
= 0;
30 remainderq(__float128 x
, __float128 p
)
36 GET_FLT128_WORDS64(hx
,lx
,x
);
37 GET_FLT128_WORDS64(hp
,lp
,p
);
38 sx
= hx
&0x8000000000000000ULL
;
39 hp
&= 0x7fffffffffffffffLL
;
40 hx
&= 0x7fffffffffffffffLL
;
42 /* purge off exception values */
43 if((hp
|lp
)==0) return (x
*p
)/(x
*p
); /* p = 0 */
44 if((hx
>=0x7fff000000000000LL
)|| /* x not finite */
45 ((hp
>=0x7fff000000000000LL
)&& /* p is NaN */
46 (((hp
-0x7fff000000000000LL
)|lp
)!=0)))
50 if (hp
<=0x7ffdffffffffffffLL
) x
= fmodq(x
,p
+p
); /* now x < 2p */
51 if (((hx
-hp
)|(lx
-lp
))==0) return zero
*x
;
54 if (hp
<0x0002000000000000LL
) {
66 GET_FLT128_MSW64(hx
,x
);
67 SET_FLT128_MSW64(x
,hx
^sx
);