gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 7 of 7 for funcall:sqrtf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/complex/s_csqrtf.c - 3.4KB - 131 lines
74:                 if (x < 0.0f) {
75:                         w = 0.0f + sqrtf(-x) * I;
76:                         return (w);
More results from s_csqrtf.c
bsd_source/lib/libc/src_bsd/math/e_acosf.c - 2.7KB - 77 lines
58:             q = one+z*(qS1+z*(qS2+z*(qS3+z*qS4)));
59:             s = sqrtf(z);
60:             r = p/q;
More results from e_acosf.c
bsd_source/lib/libc/src_bsd/math/e_acoshf.c - 1.4KB - 45 lines
39:             t=x*x;
40:             return logf((float)2.0*x-one/(x+sqrtf(t-one)));
41:         } else {                       /* 1<x<2 */
More results from e_acoshf.c
bsd_source/lib/libc/src_bsd/math/e_asinf.c - 2.7KB - 80 lines
63:         q = one+t*(qS1+t*(qS2+t*(qS3+t*qS4)));
64:         s = sqrtf(t);
65:         if(ix>=0x3F79999A) {   /* if |x| > 0.975 */
bsd_source/lib/libc/src_bsd/math/e_hypotf.c - 2.5KB - 79 lines
65:             t2 = a-t1;
66:             w  = sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
67:         } else {
More results from e_hypotf.c
bsd_source/lib/libc/src_bsd/math/e_powf.c - 8.7KB - 241 lines
101:             if(hx>=0)  /* x >= +0 */
102:             return sqrtf(x);   
103:         }
bsd_source/lib/libc/src_bsd/math/s_asinhf.c - 1.4KB - 45 lines
38:             t = fabsf(x);
39:             w = logf((float)2.0*t+one/(sqrtf(x*x+one)+t));
40:         } else {               /* 2.0 > |x| > 2**-28 */
More results from s_asinhf.c