#include <math.h>
#include <float.h>
#include "ieee754/ieee754.h"
Go to the source code of this file.
◆ fpclass_t
◆ _errno()
◆ _fpclass()
Definition at line 17 of file fpclass.c.
18{
19 union
20 {
21 double* __d;
25
26
27
28 if (
d.d->exponent == 0x7ff)
29 {
30 if (
d.d->mantissah == 0 &&
d.d->mantissal == 0)
31 {
33 }
34
35 else
36 {
38 }
39 }
40
41
42 if (
d.d->exponent == 0)
43 {
44 if (
d.d->mantissah == 0 &&
d.d->mantissal == 0)
45 {
47 }
48 else
49 {
51 }
52 }
53
54 else
55 {
57 }
58}
Referenced by _yn().
◆ _jn()
Definition at line 12 of file jn_yn.c.
13{
14
16}
double __ieee754_jn(int, double)
◆ _yn()
Definition at line 21 of file jn_yn.c.
22{
27 {
30 }
32}
_STLP_DECLSPEC complex< float > _STLP_CALL sqrt(const complex< float > &)
GLuint GLdouble GLdouble GLint GLint order
double __ieee754_yn(int, double)
_Check_return_ __MINGW_NOTHROW _CRTIMP int __cdecl _finite(_In_ double)
fpclass_t _fpclass(double __d)