ReactOS
0.4.15-dev-7108-g1cf6ce6
exp2f.c
Go to the documentation of this file.
1
2
#include <math.h>
3
4
_Check_return_
5
float
6
__cdecl
7
exp2f
(
8
_In_
float
x
)
9
{
10
/* This below avoids clang to optimize our pow call to exp2 */
11
static
const
float
TWO = 2.0f;
12
return
powf
(TWO,
x
);
13
}
__cdecl
#define __cdecl
Definition:
accygwin.h:79
exp2f
_Check_return_ float __cdecl exp2f(_In_ float x)
Definition:
exp2f.c:7
x
GLint GLint GLint GLint GLint x
Definition:
gl.h:1548
powf
_Check_return_ float __cdecl powf(_In_ float b, _In_ float e)
Definition:
math.h:232
_Check_return_
#define _Check_return_
Definition:
ms_sal.h:557
_In_
#define _In_
Definition:
ms_sal.h:308
sdk
lib
crt
math
exp2f.c
Generated on Sat Dec 2 2023 06:12:30 for ReactOS by
1.9.6