1 /* origin: FreeBSD /usr/src/lib/msun/src/e_scalbf.c */
3 * 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 * ====================================================
19 float scalbf(float x
, float fn
)
21 if (isnan(x
) || isnan(fn
)) return x
*fn
;
28 if (rintf(fn
) != fn
) return (fn
-fn
)/(fn
-fn
);
29 if ( fn
> 65000.0f
) return scalbnf(x
, 65000);
30 if (-fn
> 65000.0f
) return scalbnf(x
,-65000);
31 return scalbnf(x
,(int)fn
);