1 /* s_scalbnl.c -- long double version of s_scalbn.c.
2 * Conversion to IEEE quad long double by Jakub Jelinek, jj@ultra.linux.cz.
5 /* @(#)s_scalbn.c 5.1 93/09/24 */
7 * ====================================================
8 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
10 * Developed at SunPro, a Sun Microsystems, Inc. business.
11 * Permission to use, copy, modify, and distribute this
12 * software is freely granted, provided that this notice
14 * ====================================================
17 #if defined(LIBM_SCCS) && !defined(lint)
18 static char rcsid
[] = "$NetBSD: $";
22 * scalbnq (long double x, int n)
23 * scalbnq(x,n) returns x* 2**n computed by exponent
24 * manipulation rather than by actually performing an
25 * exponentiation or a multiplication.
28 #include "quadmath-imp.h"
30 static const __float128
31 two114
= 2.0769187434139310514121985316880384E+34Q
, /* 0x4071000000000000, 0 */
32 twom114
= 4.8148248609680896326399448564623183E-35Q
, /* 0x3F8D000000000000, 0 */
36 __float128
scalbnq (__float128 x
, int n
)
39 GET_FLT128_WORDS64(hx
,lx
,x
);
40 k
= (hx
>>48)&0x7fff; /* extract exponent */
41 if (k
==0) { /* 0 or subnormal x */
42 if ((lx
|(hx
&0x7fffffffffffffffULL
))==0) return x
; /* +-0 */
44 GET_FLT128_MSW64(hx
,x
);
45 k
= ((hx
>>48)&0x7fff) - 114;
47 if (k
==0x7fff) return x
+x
; /* NaN or Inf */
48 if (n
< -50000) return tiny
*copysignq(tiny
,x
); /*underflow*/
49 if (n
> 50000 || k
+n
> 0x7ffe)
50 return huge
*copysignq(huge
,x
); /* overflow */
51 /* Now k and n are bounded we know that k = k+n does not
54 if (k
> 0) /* normal result */
55 {SET_FLT128_MSW64(x
,(hx
&0x8000ffffffffffffULL
)|(k
<<48)); return x
;}
57 return tiny
*copysignq(tiny
,x
); /*underflow*/
58 k
+= 114; /* subnormal result */
59 SET_FLT128_MSW64(x
,(hx
&0x8000ffffffffffffULL
)|(k
<<48));