9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
23 */
24 /*
25 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
26 * Use is subject to license terms.
27 */
28
29 #pragma weak scalb = __scalb
30 #pragma weak _scalb = __scalb
31
32 #include "libm.h"
33
34 double
35 scalb(double x, double fn) {
36 int hn, in, n;
37 double z;
38
39 if (isnan(x) || isnan(fn))
40 return (x * fn);
41
42 in = ((int *)&fn)[HIWORD];
43 hn = in & ~0x80000000;
44 if (hn == 0x7ff00000) /* fn is inf */
45 return (_SVID_libm_err(x, fn, 47));
46
47 /* see if fn is an integer without raising inexact */
48 if (hn >= 0x43300000) {
49 /* |fn| >= 2^52, so it must be an integer */
50 n = (in < 0)? -65000 : 65000;
|
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
23 */
24 /*
25 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
26 * Use is subject to license terms.
27 */
28
29 #pragma weak __scalb = scalb
30 #pragma weak _scalb = scalb
31
32 #include "libm.h"
33
34 double
35 scalb(double x, double fn) {
36 int hn, in, n;
37 double z;
38
39 if (isnan(x) || isnan(fn))
40 return (x * fn);
41
42 in = ((int *)&fn)[HIWORD];
43 hn = in & ~0x80000000;
44 if (hn == 0x7ff00000) /* fn is inf */
45 return (_SVID_libm_err(x, fn, 47));
46
47 /* see if fn is an integer without raising inexact */
48 if (hn >= 0x43300000) {
49 /* |fn| >= 2^52, so it must be an integer */
50 n = (in < 0)? -65000 : 65000;
|