ReactOS
0.4.16-dev-477-g6ada597
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:
no_sal2.h:60
_In_
#define _In_
Definition:
no_sal2.h:158
sdk
lib
crt
math
exp2f.c
Generated on Thu Jan 16 2025 06:13:19 for ReactOS by
1.9.6