2 /* @(#)e_scalb.c 1.3 95/01/18 */
4 * ====================================================
5 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
7 * Developed at SunSoft, 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.
24 double __ieee754_scalb(double x
, int fn
)
26 double __ieee754_scalb(x
,fn
)
31 double __ieee754_scalb(double x
, double fn
)
33 double __ieee754_scalb(x
,fn
)
41 if (isnan(x
)||isnan(fn
)) return x
*fn
;
43 if(fn
>0.0) return x
*fn
;
46 if (rint(fn
)!=fn
) return (fn
-fn
)/(fn
-fn
);
47 if ( fn
> 65000.0) return scalbn(x
, 65000);
48 if (-fn
> 65000.0) return scalbn(x
,-65000);
49 return scalbn(x
,(int)fn
);