ReactOS
0.4.16-dev-814-g656a5dc
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
math.h
Go to the documentation of this file.
1
#ifndef __CRT_INTERNAL_MATH_H
2
#define __CRT_INTERNAL_MATH_H
3
4
#ifndef _CRT_PRECOMP_H
5
#error DO NOT INCLUDE THIS HEADER DIRECTLY
6
#endif
7
8
int
_isinf
(
double
);
/* not exported */
9
int
_isnanl
(
long
double
);
/* not exported */
10
int
_isinfl
(
long
double
);
/* not exported */
11
12
#if defined(__GNUC__)
13
#define FPU_DOUBLE(var) double var; \
14
__asm__ __volatile__( "fstpl %0;fwait"
: "=m" (var) : )
15
#define FPU_DOUBLES(var1,var2) double var1,var2; \
16
__asm__ __volatile__( "fstpl %0;fwait"
: "=m" (var2) : ); \
17
__asm__ __volatile__( "fstpl %0;fwait" : "=m" (var1) : )
18
#elif defined(_MSC_VER)
19
#define FPU_DOUBLE(var) double var; \
20
__asm { fstp [var] }; __asm { fwait };
21
#define FPU_DOUBLES(var1,var2) double var1,var2; \
22
__asm { fstp [var1] }; __asm { fwait }; \
23
__asm { fstp [var2] }; __asm { fwait };
24
#endif
25
26
#endif
_isinfl
int _isinfl(long double)
_isinf
int _isinf(double)
_isnanl
int _isnanl(long double)
sdk
lib
crt
include
internal
math.h
Generated on Thu Mar 13 2025 06:15:02 for ReactOS by
1.9.6