1 /* ef_scalb.c -- float version of e_scalb.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 * ====================================================
21 float __ieee754_scalbf(float x
, int fn
)
23 float __ieee754_scalbf(x
,fn
)
28 float __ieee754_scalbf(float x
, float fn
)
30 float __ieee754_scalbf(x
,fn
)
38 if (isnan(x
)||isnan(fn
)) return x
*fn
;
40 if(fn
>(float)0.0) return x
*fn
;
43 if (rintf(fn
)!=fn
) return (fn
-fn
)/(fn
-fn
);
45 if ( fn
> (float)65000.0) return scalbnf(x
, 65000);
46 if (-fn
> (float)65000.0) return scalbnf(x
,-65000);
48 if ( fn
> (float)32000.0) return scalbnf(x
, 32000);
49 if (-fn
> (float)32000.0) return scalbnf(x
,-32000);
51 return scalbnf(x
,(int)fn
);