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 /*
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 */
25 /*
26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
28 */
29
30 #if defined(ELFOBJ)
31 #pragma weak scalbnl = __scalbnl
32 #endif
33
34 #include "libm.h"
35 #include <float.h> /* LDBL_MAX, LDBL_MIN */
36 #include <stdlib.h> /* abs */
37
38 #if defined(__sparc)
39 #define XSET_EXP(k, x) ((int *) &x)[0] = (((int *) &x)[0] & ~0x7fff0000) | \
40 (k << 16)
41 #define ISINFNANL(k, x) (k == 0x7fff)
42 #define XTWOT_OFFSET 113
43 static const long double xtwot = 10384593717069655257060992658440192.0L,
44 /* 2^113 */
45 twomtm1 = 4.814824860968089632639944856462318296E-35L; /* 2^-114 */
46 #elif defined(__x86)
47 #define XSET_EXP(k, x) ((int *) &x)[2] = (((int *) &x)[2] & ~0x7fff) | k
48 #if defined(HANDLE_UNSUPPORTED)
49 #define ISINFNANL(k, x) (k == 0x7fff || k != 0 && \
50 (((int *) &x)[1] & 0x80000000) == 0)
51 #else
52 #define ISINFNANL(k, x) (k == 0x7fff)
|
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 /*
23 * Copyright 2011 Nexenta Systems, Inc. All rights reserved.
24 */
25 /*
26 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
27 * Use is subject to license terms.
28 */
29
30 #pragma weak scalbnl = __scalbnl
31
32 #include "libm.h"
33 #include <float.h> /* LDBL_MAX, LDBL_MIN */
34 #include <stdlib.h> /* abs */
35
36 #if defined(__sparc)
37 #define XSET_EXP(k, x) ((int *) &x)[0] = (((int *) &x)[0] & ~0x7fff0000) | \
38 (k << 16)
39 #define ISINFNANL(k, x) (k == 0x7fff)
40 #define XTWOT_OFFSET 113
41 static const long double xtwot = 10384593717069655257060992658440192.0L,
42 /* 2^113 */
43 twomtm1 = 4.814824860968089632639944856462318296E-35L; /* 2^-114 */
44 #elif defined(__x86)
45 #define XSET_EXP(k, x) ((int *) &x)[2] = (((int *) &x)[2] & ~0x7fff) | k
46 #if defined(HANDLE_UNSUPPORTED)
47 #define ISINFNANL(k, x) (k == 0x7fff || k != 0 && \
48 (((int *) &x)[1] & 0x80000000) == 0)
49 #else
50 #define ISINFNANL(k, x) (k == 0x7fff)
|