ReactOS 0.4.15-dev-7924-g5949c20
ci.c File Reference
#include <precomp.h>
Include dependency graph for ci.c:

Go to the source code of this file.

Functions

double CDECL _CItan (void)
 
double CDECL _CIsinh (void)
 
double CDECL _CIcosh (void)
 
double CDECL _CItanh (void)
 
double CDECL _CIasin (void)
 
double CDECL _CIacos (void)
 
double CDECL _CIatan (void)
 
double CDECL _CIatan2 (void)
 
double CDECL _CIexp (void)
 
double CDECL _CIlog10 (void)
 
double CDECL _CIfmod (void)
 

Function Documentation

◆ _CIacos()

double CDECL _CIacos ( void  )

Definition at line 46 of file ci.c.

47{
48 FPU_DOUBLE(x);
49 return acos(x);
50}
valarray< _Tp > acos(const valarray< _Tp > &__x)
Definition: _valarray.h:901
GLint GLint GLint GLint GLint x
Definition: gl.h:1548

◆ _CIasin()

double CDECL _CIasin ( void  )

Definition at line 38 of file ci.c.

39{
40 FPU_DOUBLE(x);
41 return asin(x);
42}
valarray< _Tp > asin(const valarray< _Tp > &__x)
Definition: _valarray.h:910

◆ _CIatan()

double CDECL _CIatan ( void  )

Definition at line 54 of file ci.c.

55{
56 FPU_DOUBLE(x);
57 return atan(x);
58}
valarray< _Tp > atan(const valarray< _Tp > &__x)
Definition: _valarray.h:919

◆ _CIatan2()

double CDECL _CIatan2 ( void  )

Definition at line 62 of file ci.c.

63{
64 FPU_DOUBLES(y, x);
65 return atan2(y, x);
66}
valarray< _Tp > atan2(const valarray< _Tp > &__x, const valarray< _Tp > &__y)
Definition: _valarray.h:928
GLint GLint GLint GLint GLint GLint y
Definition: gl.h:1548

◆ _CIcosh()

double CDECL _CIcosh ( void  )

Definition at line 22 of file ci.c.

23{
24 FPU_DOUBLE(x);
25 return cosh(x);
26}
_STLP_DECLSPEC complex< float > _STLP_CALL cosh(const complex< float > &)

◆ _CIexp()

double CDECL _CIexp ( void  )

Definition at line 70 of file ci.c.

71{
72 FPU_DOUBLE(x);
73 return exp(x);
74}
DWORD exp
Definition: msg.c:16058

◆ _CIfmod()

double CDECL _CIfmod ( void  )

Definition at line 86 of file ci.c.

87{
88 FPU_DOUBLES(x, y);
89 return fmod(x, y);
90}
_Check_return_ double __cdecl fmod(_In_ double x, _In_ double y)

◆ _CIlog10()

double CDECL _CIlog10 ( void  )

Definition at line 78 of file ci.c.

79{
80 FPU_DOUBLE(x);
81 return log10(x);
82}
double log10(double x)
Definition: freeldr.c:124

◆ _CIsinh()

double CDECL _CIsinh ( void  )

Definition at line 14 of file ci.c.

15{
16 FPU_DOUBLE(x);
17 return sinh(x);
18}
_STLP_DECLSPEC complex< float > _STLP_CALL sinh(const complex< float > &)

◆ _CItan()

double CDECL _CItan ( void  )

Definition at line 6 of file ci.c.

7{
8 FPU_DOUBLE(x);
9 return tan(x);
10}
_STLP_DECLSPEC complex< float > _STLP_CALL tan(const complex< float > &)

◆ _CItanh()

double CDECL _CItanh ( void  )

Definition at line 30 of file ci.c.

31{
32 FPU_DOUBLE(x);
33 return tanh(x);
34}
_STLP_DECLSPEC complex< float > _STLP_CALL tanh(const complex< float > &)