xref: /minix3/lib/libm/src/w_scalbf.c (revision 2fe8fb192fe7e8720e3e7a77f928da545e872a6a)
1*2fe8fb19SBen Gras /* w_scalbf.c -- float version of w_scalb.c.
2*2fe8fb19SBen Gras  * Conversion to float by Ian Lance Taylor, Cygnus Support, ian@cygnus.com.
3*2fe8fb19SBen Gras  */
4*2fe8fb19SBen Gras 
5*2fe8fb19SBen Gras /*
6*2fe8fb19SBen Gras  * ====================================================
7*2fe8fb19SBen Gras  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
8*2fe8fb19SBen Gras  *
9*2fe8fb19SBen Gras  * Developed at SunPro, a Sun Microsystems, Inc. business.
10*2fe8fb19SBen Gras  * Permission to use, copy, modify, and distribute this
11*2fe8fb19SBen Gras  * software is freely granted, provided that this notice
12*2fe8fb19SBen Gras  * is preserved.
13*2fe8fb19SBen Gras  * ====================================================
14*2fe8fb19SBen Gras  */
15*2fe8fb19SBen Gras 
16*2fe8fb19SBen Gras #include <sys/cdefs.h>
17*2fe8fb19SBen Gras #if defined(LIBM_SCCS) && !defined(lint)
18*2fe8fb19SBen Gras __RCSID("$NetBSD: w_scalbf.c,v 1.6 2002/05/26 22:02:02 wiz Exp $");
19*2fe8fb19SBen Gras #endif
20*2fe8fb19SBen Gras 
21*2fe8fb19SBen Gras /*
22*2fe8fb19SBen Gras  * wrapper scalbf(float x, float fn) is provide for
23*2fe8fb19SBen Gras  * passing various standard test suite. One
24*2fe8fb19SBen Gras  * should use scalbn() instead.
25*2fe8fb19SBen Gras  */
26*2fe8fb19SBen Gras 
27*2fe8fb19SBen Gras #include "math.h"
28*2fe8fb19SBen Gras #include "math_private.h"
29*2fe8fb19SBen Gras 
30*2fe8fb19SBen Gras #include <errno.h>
31*2fe8fb19SBen Gras 
32*2fe8fb19SBen Gras #ifdef _SCALB_INT
33*2fe8fb19SBen Gras float
scalbf(float x,int fn)34*2fe8fb19SBen Gras scalbf(float x, int fn)		/* wrapper scalbf */
35*2fe8fb19SBen Gras #else
36*2fe8fb19SBen Gras float
37*2fe8fb19SBen Gras scalbf(float x, float fn)		/* wrapper scalbf */
38*2fe8fb19SBen Gras #endif
39*2fe8fb19SBen Gras {
40*2fe8fb19SBen Gras #ifdef _IEEE_LIBM
41*2fe8fb19SBen Gras 	return __ieee754_scalbf(x,fn);
42*2fe8fb19SBen Gras #else
43*2fe8fb19SBen Gras 	float z;
44*2fe8fb19SBen Gras 	z = __ieee754_scalbf(x,fn);
45*2fe8fb19SBen Gras 	if(_LIB_VERSION == _IEEE_) return z;
46*2fe8fb19SBen Gras 	if(!(finitef(z)||isnanf(z))&&finitef(x)) {
47*2fe8fb19SBen Gras 	    /* scalbf overflow */
48*2fe8fb19SBen Gras 	    return (float)__kernel_standard((double)x,(double)fn,132);
49*2fe8fb19SBen Gras 	}
50*2fe8fb19SBen Gras 	if(z==(float)0.0&&z!=x) {
51*2fe8fb19SBen Gras 	    /* scalbf underflow */
52*2fe8fb19SBen Gras 	    return (float)__kernel_standard((double)x,(double)fn,133);
53*2fe8fb19SBen Gras 	}
54*2fe8fb19SBen Gras #ifndef _SCALB_INT
55*2fe8fb19SBen Gras 	if(!finitef(fn)) errno = ERANGE;
56*2fe8fb19SBen Gras #endif
57*2fe8fb19SBen Gras 	return z;
58*2fe8fb19SBen Gras #endif
59*2fe8fb19SBen Gras }
60