xref: /netbsd-src/lib/libm/src/e_scalb.c (revision 2a399c6883d870daece976daec6ffa7bb7f934ce)
1 /* @(#)e_scalb.c 5.1 93/09/24 */
2 /*
3  * ====================================================
4  * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
5  *
6  * Developed at SunPro, a Sun Microsystems, Inc. business.
7  * Permission to use, copy, modify, and distribute this
8  * software is freely granted, provided that this notice
9  * is preserved.
10  * ====================================================
11  */
12 
13 #include <sys/cdefs.h>
14 #if defined(LIBM_SCCS) && !defined(lint)
15 __RCSID("$NetBSD: e_scalb.c,v 1.7 1997/10/09 11:29:53 lukem Exp $");
16 #endif
17 
18 /*
19  * __ieee754_scalb(x, fn) is provide for
20  * passing various standard test suite. One
21  * should use scalbn() instead.
22  */
23 
24 #include "math.h"
25 #include "math_private.h"
26 
27 #ifdef _SCALB_INT
28 #ifdef __STDC__
29 	double __ieee754_scalb(double x, int fn)
30 #else
31 	double __ieee754_scalb(x,fn)
32 	double x; int fn;
33 #endif
34 #else
35 #ifdef __STDC__
36 	double __ieee754_scalb(double x, double fn)
37 #else
38 	double __ieee754_scalb(x,fn)
39 	double x, fn;
40 #endif
41 #endif
42 {
43 #ifdef _SCALB_INT
44 	return scalbn(x,fn);
45 #else
46 	if (isnan(x)||isnan(fn)) return x*fn;
47 	if (!finite(fn)) {
48 	    if(fn>0.0) return x*fn;
49 	    else       return x/(-fn);
50 	}
51 	if (rint(fn)!=fn) return (fn-fn)/(fn-fn);
52 	if ( fn > 65000.0) return scalbn(x, 65000);
53 	if (-fn > 65000.0) return scalbn(x,-65000);
54 	return scalbn(x,(int)fn);
55 #endif
56 }
57