SDL  2.0
s_scalbn.c File Reference
#include "math_libm.h"
#include "math_private.h"
#include <limits.h>
+ Include dependency graph for s_scalbn.c:

Go to the source code of this file.

Functions

double scalbln (double x, long n)
 
 libm_hidden_def (scalbln)
 

Variables

static const double two54 = 1.80143985094819840000e+16
 
static const double twom54 = 5.55111512312578270212e-17
 
static const double huge = 1.0e+300
 
static const double tiny = 1.0e-300
 

Function Documentation

◆ libm_hidden_def()

libm_hidden_def ( scalbln  )

Definition at line 62 of file s_scalbn.c.

References scalbln(), and scalbn.

Referenced by __ieee754_atan2(), __ieee754_fmod(), __ieee754_log(), __ieee754_log10(), __ieee754_pow(), __ieee754_sqrt(), atan(), copysign(), cos(), fabs(), floor(), sin(), and tan().

66 {
67  return scalbln(x, n);
68 }
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574
double scalbln(double x, long n)
Definition: s_scalbn.c:29
GLdouble n

◆ scalbln()

double scalbln ( double  x,
long  n 
)

Definition at line 29 of file s_scalbn.c.

References copysign(), EXTRACT_WORDS, GET_HIGH_WORD, huge, k, SET_HIGH_WORD, tiny, two54, and twom54.

Referenced by libm_hidden_def().

30 {
31  int32_t k, hx, lx;
32 
33  EXTRACT_WORDS(hx, lx, x);
34  k = (hx & 0x7ff00000) >> 20; /* extract exponent */
35  if (k == 0) { /* 0 or subnormal x */
36  if ((lx | (hx & 0x7fffffff)) == 0)
37  return x; /* +-0 */
38  x *= two54;
39  GET_HIGH_WORD(hx, x);
40  k = ((hx & 0x7ff00000) >> 20) - 54;
41  }
42  if (k == 0x7ff)
43  return x + x; /* NaN or Inf */
44  k = k + n;
45  if (k > 0x7fe)
46  return huge * copysign(huge, x); /* overflow */
47  if (n < -50000)
48  return tiny * copysign(tiny, x); /* underflow */
49  if (k > 0) { /* normal result */
50  SET_HIGH_WORD(x, (hx & 0x800fffff) | (k << 20));
51  return x;
52  }
53  if (k <= -54) {
54  if (n > 50000) /* in case integer overflow in n+k */
55  return huge * copysign(huge, x); /* overflow */
56  return tiny * copysign(tiny, x); /* underflow */
57  }
58  k += 54; /* subnormal result */
59  SET_HIGH_WORD(x, (hx & 0x800fffff) | (k << 20));
60  return x * twom54;
61 }
#define GET_HIGH_WORD(i, d)
Definition: math_private.h:108
static const double tiny
Definition: s_scalbn.c:27
GLint GLint GLint GLint GLint x
Definition: SDL_opengl.h:1574
signed int int32_t
#define SET_HIGH_WORD(d, v)
Definition: math_private.h:136
static const double huge
Definition: s_scalbn.c:26
#define EXTRACT_WORDS(ix0, ix1, d)
Definition: math_private.h:98
static const double two54
Definition: s_scalbn.c:24
double copysign(double x, double y)
Definition: s_copysign.c:21
GLdouble n
return Display return Display Bool Bool int int int return Display XEvent Bool(*) XPointer return Display return Display Drawable _Xconst char unsigned int unsigned int return Display Pixmap Pixmap XColor XColor unsigned int unsigned int return Display _Xconst char char int char return Display Visual unsigned int int int char unsigned int unsigned int int int return Display Window Cursor return Display Window return Display Drawable GC int int unsigned int unsigned int return Display Drawable GC int int _Xconst char int return Display Drawable GC int int unsigned int unsigned int return Display return Display Cursor return Display GC return XModifierKeymap return char Display Window int return Display return Display Atom return Display Window XWindowAttributes return Display Window return Display XEvent Bool(*) XPointer return Display Window Bool unsigned int int int Window Cursor Time return Display Window int return KeySym return Display _Xconst char Bool return Display _Xconst char return XKeyEvent char int KeySym XComposeStatus return Display int int int XVisualInfo return Display Window int int return _Xconst char return Display XEvent return Display Drawable GC XImage int int int int unsigned int unsigned int return Display Window Window Window int int int int unsigned int return Display Window Window int int return Display Window unsigned int unsigned int return Display Window Bool long XEvent return Display GC unsigned long return Display Window int Time return Display Window Window return Display Window unsigned long return Display Window XSizeHints Display Colormap XColor int return char int XTextProperty return XFontStruct _Xconst char int int int int XCharStruct return Display Window return Display Time return Display Colormap return Display Window Window int int unsigned int unsigned int int int return Display Window int return XExtensionInfo Display char XExtensionHooks int XPointer return XExtensionInfo XExtensionInfo Display return Display return Display unsigned long Display GC Display char long Display xReply int Bool return Display Bool return Display int SDL_X11_XESetEventToWireRetType return Display Window Window Window Window unsigned int return Display XShmSegmentInfo return Display Drawable GC XImage int int int int unsigned int unsigned int Boo k)
Definition: SDL_x11sym.h:213
static const double twom54
Definition: s_scalbn.c:25

Variable Documentation

◆ huge

const double huge = 1.0e+300
static

Definition at line 26 of file s_scalbn.c.

Referenced by scalbln().

◆ tiny

const double tiny = 1.0e-300
static

Definition at line 27 of file s_scalbn.c.

Referenced by scalbln().

◆ two54

const double two54 = 1.80143985094819840000e+16
static

Definition at line 24 of file s_scalbn.c.

Referenced by scalbln().

◆ twom54

const double twom54 = 5.55111512312578270212e-17
static

Definition at line 25 of file s_scalbn.c.

Referenced by scalbln().