fix off-by-1 screen title fill
[AROS.git] / compiler / mlib / s_scalbn.c
blob8d51668323a4a442a390b4c771e03e66784d241f
1 /* @(#)s_scalbn.c 5.1 93/09/24 */
2 /*
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
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 * ====================================================
13 #ifndef lint
14 static char rcsid[] = "$FreeBSD: src/lib/msun/src/s_scalbn.c,v 1.11 2005/03/07 21:27:37 das Exp $";
15 #endif
18 * scalbn (double x, int n)
19 * scalbn(x,n) returns x* 2**n computed by exponent
20 * manipulation rather than by actually performing an
21 * exponentiation or a multiplication.
24 #include <aros/system.h>
25 #include <float.h>
27 #include "math.h"
28 #include "math_private.h"
30 static const double
31 two54 = 1.80143985094819840000e+16, /* 0x43500000, 0x00000000 */
32 twom54 = 5.55111512312578270212e-17, /* 0x3C900000, 0x00000000 */
33 huge = 1.0e+300,
34 tiny = 1.0e-300;
36 double
37 scalbn (double x, int n)
39 int32_t k,hx,lx;
40 EXTRACT_WORDS(hx,lx,x);
41 k = (hx&0x7ff00000)>>20; /* extract exponent */
42 if (k==0) { /* 0 or subnormal x */
43 if ((lx|(hx&0x7fffffff))==0) return x; /* +-0 */
44 x *= two54;
45 GET_HIGH_WORD(hx,x);
46 k = ((hx&0x7ff00000)>>20) - 54;
47 if (n< -50000) return tiny*x; /*underflow*/
49 if (k==0x7ff) return x+x; /* NaN or Inf */
50 k = k+n;
51 if (k > 0x7fe) return huge*copysign(huge,x); /* overflow */
52 if (k > 0) /* normal result */
53 {SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20)); return x;}
54 if (k <= -54)
55 if (n > 50000) /* in case integer overflow in n+k */
56 return huge*copysign(huge,x); /*overflow*/
57 else return tiny*copysign(tiny,x); /*underflow*/
58 k += 54; /* subnormal result */
59 SET_HIGH_WORD(x,(hx&0x800fffff)|(k<<20));
60 return x*twom54;
63 AROS_MAKE_ALIAS(scalbn, ldexp);
65 #if (LDBL_MANT_DIG == 53)
66 /* Alias scalbn -> ldexpl */
67 AROS_MAKE_ASM_SYM(typeof(ldexpl), ldexpl, AROS_CSYM_FROM_ASM_NAME(ldexpl), AROS_CSYM_FROM_ASM_NAME(scalbn));
68 AROS_EXPORT_ASM_SYM(AROS_CSYM_FROM_ASM_NAME(ldexpl));
70 /* Alias scalbn -> scalbnl */
71 AROS_MAKE_ASM_SYM(typeof(scalbnl), scalbnl, AROS_CSYM_FROM_ASM_NAME(scalbnl), AROS_CSYM_FROM_ASM_NAME(scalbn));
72 AROS_EXPORT_ASM_SYM(AROS_CSYM_FROM_ASM_NAME(scalbnl));
73 #endif