/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2011 Nexenta Systems, Inc. All rights reserved.
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#include "libm.h"
#include <float.h> /* DBL_MAX, DBL_MIN */
#if defined(__x86)
#else
/*
* Normalize non-zero subnormal x and return biased exponent of x in [-51,0]
*/
static int
int s = 52;
if (t)
s -= 32;
else
t = w;
if (t & 0xffff0000)
s -= 16, t >>= 16;
if (t & 0xff00)
s -= 8, t >>= 8;
if (t & 0xf0)
s -= 4, t >>= 4;
t <<= 1;
s -= (0xffffaa50 >> t) & 0x3;
if (s < 32) {
v = (v << s) | w >> (32 - s);
w <<= s;
} else {
v = w << (s - 32);
w = 0;
}
return (1 - s);
}
#endif /* defined(__x86) */
double
scalbln(double x, long n) {
k = ix >> 20;
if (k == 0x7ff)
#if defined(FPADD_TRAPS_INCOMPLETE_ON_NAN)
/* assumes sparc-like QNaN */
#else
return (x + x);
#endif
return (x);
if (k == 0) {
#if defined(__x86)
x *= two52;
#else
k = ilogb_biased((unsigned *) px);
#endif
}
k += (int) n;
if (n > 5000 || k > 0x7fe)
if (n < -5000 || k <= -54)
if (k > 0) {
return (x);
}
k += 54;
return (x * twom54);
}