Searched refs:ix2m1 (Results 1 - 3 of 3) sorted by relevance

/haiku/src/system/libroot/posix/glibc/math/
H A Dk_casinhf.c84 float ix2m1 = (ix + 1.0f) * (ix - 1.0f); local
85 float s = sqrtf (ix2m1);
87 __real__ res = log1pf (2.0f * (ix2m1 + ix * s)) / 2.0f;
95 float ix2m1 = (ix + 1.0f) * (ix - 1.0f); local
98 float d = sqrtf (ix2m1 * ix2m1 + f);
99 float dp = d + ix2m1;
H A Dk_casinh.c84 double ix2m1 = (ix + 1.0) * (ix - 1.0); local
85 double s = sqrt (ix2m1);
87 __real__ res = log1p (2.0 * (ix2m1 + ix * s)) / 2.0;
95 double ix2m1 = (ix + 1.0) * (ix - 1.0); local
98 double d = sqrt (ix2m1 * ix2m1 + f);
99 double dp = d + ix2m1;
H A Dk_casinhl.c91 long double ix2m1 = (ix + 1.0L) * (ix - 1.0L); local
92 long double s = sqrtl (ix2m1);
94 __real__ res = log1pl (2.0L * (ix2m1 + ix * s)) / 2.0L;
102 long double ix2m1 = (ix + 1.0L) * (ix - 1.0L); local
105 long double d = sqrtl (ix2m1 * ix2m1 + f);
106 long double dp = d + ix2m1;

Completed in 47 milliseconds