3extern inline float sqrtf(
float x) {
4 static const double _half=.5;
5 static const double _three=3.0;
9 guess = _half*guess*(_three - guess*guess*
x);
10 guess = _half*guess*(_three - guess*guess*
x);
11 guess = _half*guess*(_three - guess*guess*
x);
18extern inline float sqrt(
float x) {
19 static const double _half=.5;
20 static const double _three=3.0;
24 guess = _half*guess*(_three - guess*guess*
x);
25 guess = _half*guess*(_three - guess*guess*
x);
26 guess = _half*guess*(_three - guess*guess*
x);
27 guess = _half*guess*(_three - guess*guess*
x);
35extern inline float fabs(
float x) {
39 (*(
int*)&
x)&=0x7fffffff;
48extern float cosf(
float);
49extern inline float cos(
float x) {
49extern inline float cos(
float x) {
…}
57 if(!
y ||
x > 8388608.0f)
66#pragma cplusplus reset
double x double x
Definition e_atan2.c:58
double x double y
Definition e_atan2.c:58
int i
Definition e_pow.c:165
float cosf(float)
Definition d_kankyo.cpp:26
float fabs(float x)
Definition fake_tgmath.h:35
float sqrtf(float x)
Definition fake_tgmath.h:3
float sqrt(float x)
Definition fake_tgmath.h:18
float cos(float x)
Definition fake_tgmath.h:49
float fabsf(float x)
Definition fake_tgmath.h:44