1 /* e_remainderf.c -- float version of e_remainder.c.
2 * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
6 * ====================================================
7 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
9 * Developed at SunPro, a Sun Microsystems, Inc. business.
10 * Permission to use, copy, modify, and distribute this
11 * software is freely granted, provided that this notice
13 * ====================================================
17 static char rcsid
[] = "$FreeBSD: src/lib/msun/src/e_remainderf.c,v 1.7 2002/05/28 18:15:04 alfred Exp $";
21 #include "math_private.h"
23 static const float zero
= 0.0;
27 __ieee754_remainderf(float x
, float p
)
39 /* purge off exception values */
40 if(hp
==0) return (x
*p
)/(x
*p
); /* p = 0 */
41 if((hx
>=0x7f800000)|| /* x not finite */
42 ((hp
>0x7f800000))) /* p is NaN */
46 if (hp
<=0x7effffff) x
= __ieee754_fmodf(x
,p
+p
); /* now x < 2p */
47 if ((hx
-hp
)==0) return zero
*x
;
56 p_half
= (float)0.5*p
;
63 SET_FLOAT_WORD(x
,hx
^sx
);