2 /* @(#)e_scalb.c 5.1 93/09/24 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunPro, a Sun Microsystems, Inc. business.
8 * Permission to use, copy, modify, and distribute this
9 * software is freely granted, provided that this notice
11 * ====================================================
15 * __ieee754_scalb(x, fn) is provide for
16 * passing various standard test suite. One
17 * should use scalbn() instead.
22 #ifndef _DOUBLE_IS_32BITS
26 double scalb(double x
, int fn
)
33 double scalb(double x
, double fn
)
43 if (isnan(x
)||isnan(fn
)) return x
*fn
;
45 if(fn
>0.0) return x
*fn
;
48 if (rint(fn
)!=fn
) return (fn
-fn
)/(fn
-fn
);
49 if ( fn
> 65000.0) return scalbn(x
, 65000);
50 if (-fn
> 65000.0) return scalbn(x
,-65000);
51 return scalbn(x
,(int)fn
);
55 #endif /* defined(_DOUBLE_IS_32BITS) */