ReactOS 0.4.16-dev-2110-ge3521eb
_finite.c File Reference
#include "libm.h"
#include "libm_util.h"
Include dependency graph for _finite.c:

Go to the source code of this file.

Functions

int FN_PROTOTYPE() _finite (double x)
 

Function Documentation

◆ _finite()

int FN_PROTOTYPE() _finite ( double  x)

Definition at line 32 of file _finite.c.

33{
34
35
36 unsigned long long ux;
37 GET_BITS_DP64(x, ux);
38 return (int)(((ux & ~SIGNBIT_DP64) - PINFBITPATT_DP64) >> 63);
39}
GLint GLint GLint GLint GLint x
Definition: gl.h:1548
#define GET_BITS_DP64(x, ux)
Definition: libm_util.h:118
#define PINFBITPATT_DP64
Definition: libm_util.h:53

Referenced by _j0(), _j1(), _y0(), _y1(), _yn(), cvt(), format_float(), rpn_exp(), rpn_exp10(), rpn_exp2(), rpn_exp3(), rpn_fact(), rpn_pow_f(), rpn_sqr_f(), run_operator(), Test__finite(), and test_finite().