ReactOS 0.4.16-dev-2216-ga08d639
stubs.c File Reference
#include <precomp.h>
#include <math.h>
Include dependency graph for stubs.c:

Go to the source code of this file.

Functions

double CDECL _CIsin (double x)
 
double CDECL _CIcos (double x)
 
double CDECL _CItan (double x)
 
double CDECL _CIsinh (double x)
 
double CDECL _CIcosh (double x)
 
double CDECL _CItanh (double x)
 
double CDECL _CIasin (double x)
 
double CDECL _CIacos (double x)
 
double CDECL _CIatan (double x)
 
double CDECL _CIatan2 (double y, double x)
 
double CDECL _CIexp (double x)
 
double CDECL _CIlog (double x)
 
double CDECL _CIlog10 (double x)
 
double CDECL _CIpow (double x, double y)
 
double CDECL _CIsqrt (double x)
 
double CDECL _CIfmod (double x, double y)
 

Function Documentation

◆ _CIacos()

double CDECL _CIacos ( double  x)

Definition at line 74 of file stubs.c.

75{
76 return acos(x);
77}
_ACRTIMP double __cdecl acos(double)
Definition: acos.c:28
GLint GLint GLint GLint GLint x
Definition: gl.h:1548

◆ _CIasin()

double CDECL _CIasin ( double  x)

Definition at line 67 of file stubs.c.

68{
69 return asin(x);
70}
_ACRTIMP double __cdecl asin(double)
Definition: asin.c:31

◆ _CIatan()

double CDECL _CIatan ( double  x)

Definition at line 81 of file stubs.c.

82{
83 return atan(x);
84}
_ACRTIMP double __cdecl atan(double)
Definition: atan.c:44

◆ _CIatan2()

double CDECL _CIatan2 ( double  y,
double  x 
)

Definition at line 88 of file stubs.c.

89{
90 return atan2(y, x);
91}
_ACRTIMP double __cdecl atan2(double, double)
Definition: atan2.c:52
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548

◆ _CIcos()

double CDECL _CIcos ( double  x)

Definition at line 32 of file stubs.c.

33{
34 return cos(x);
35}
_ACRTIMP double __cdecl cos(double)
Definition: cos.c:21

◆ _CIcosh()

double CDECL _CIcosh ( double  x)

Definition at line 53 of file stubs.c.

54{
55 return cosh(x);
56}
_ACRTIMP double __cdecl cosh(double)
Definition: cosh.c:11

◆ _CIexp()

double CDECL _CIexp ( double  x)

Definition at line 95 of file stubs.c.

96{
97 return exp(x);
98}
DWORD exp
Definition: msg.c:16058

◆ _CIfmod()

double CDECL _CIfmod ( double  x,
double  y 
)

Definition at line 130 of file stubs.c.

131{
132 return fmod(x, y);
133}
_ACRTIMP double __cdecl fmod(double, double)

◆ _CIlog()

double CDECL _CIlog ( double  x)

Definition at line 102 of file stubs.c.

103{
104 return log(x);
105}
#define log(outFile, fmt,...)
Definition: util.h:15

◆ _CIlog10()

double CDECL _CIlog10 ( double  x)

Definition at line 109 of file stubs.c.

110{
111 return log10(x);
112}
double log10(double x)
Definition: freeldr.c:190

◆ _CIpow()

double CDECL _CIpow ( double  x,
double  y 
)

Definition at line 116 of file stubs.c.

117{
118 return pow(x, y);
119}
double pow(double x, double y)
Definition: freeldr.c:178

◆ _CIsin()

double CDECL _CIsin ( double  x)

Definition at line 25 of file stubs.c.

26{
27 return sin(x);
28}
_ACRTIMP double __cdecl sin(double)
Definition: sin.c:21

◆ _CIsinh()

double CDECL _CIsinh ( double  x)

Definition at line 46 of file stubs.c.

47{
48 return sinh(x);
49}
_ACRTIMP double __cdecl sinh(double)
Definition: sinh.c:50

◆ _CIsqrt()

double CDECL _CIsqrt ( double  x)

Definition at line 123 of file stubs.c.

124{
125 return sqrt(x);
126}
_ACRTIMP double __cdecl sqrt(double)
Definition: sqrt.c:5

◆ _CItan()

double CDECL _CItan ( double  x)

Definition at line 39 of file stubs.c.

40{
41 return tan(x);
42}
_ACRTIMP double __cdecl tan(double)
Definition: tan.c:122

◆ _CItanh()

double CDECL _CItanh ( double  x)

Definition at line 60 of file stubs.c.

61{
62 return tanh(x);
63}
_ACRTIMP double __cdecl tanh(double)
Definition: tanh.c:46