gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 20 for funcall:fabsf (0.02 seconds)
t2ex
bsd_source/lib/libc/src_bsd/complex/s_casinf.c - 3.5KB - 132 lines
68:         if(y == 0.0f) {
69:                 if(fabsf(x) > 1.0f) {
70:                         w = (float)M_PI_2 + 0.0f * I;
bsd_source/lib/libc/src_bsd/complex/s_ccosf.c - 2.0KB - 84 lines
61:         x = xx;
62:         if(fabsf(x) <= 0.5f) {
63:                 *c = coshf(x);
bsd_source/lib/libc/src_bsd/complex/s_csinf.c - 2.0KB - 85 lines
62:         x = xx;
63:         if(fabsf(x) <= 0.5f) {
64:                 *c = coshf(x);
bsd_source/lib/libc/src_bsd/complex/s_csqrtf.c - 3.4KB - 131 lines
87:         if (x == 0.0f) {
88:                 r = fabsf(y);
89:                 r = sqrtf(0.5f*r);
More results from s_csqrtf.c
bsd_source/lib/libc/src_bsd/complex/s_ctanf.c - 3.4KB - 148 lines
91: 
92:         x = fabsf(2.0f * crealf(z));
93:         y = fabsf(2.0f * cimagf(z));
More results from s_ctanf.c
bsd_source/lib/libc/src_bsd/math/e_asinf.c - 2.7KB - 80 lines
59:         /* 1> |x|>= 0.5 */
60:         w = one-fabsf(x);
61:         t = w*(float)0.5;
bsd_source/lib/libc/src_bsd/math/e_atan2f.c - 3.2KB - 93 lines
79:         else if(hx<0&&k<-60) z=0.0;    /* |y|/x < -2**60 */
80:         else z=atanf(fabsf(y/x));      /* safe to do y/x */
81:         switch (m) {
bsd_source/lib/libc/src_bsd/math/e_coshf.c - 1.6KB - 60 lines
35:         if(ix<0x3eb17218) {
36:             t = expm1f(fabsf(x));
37:             w = one+t;
More results from e_coshf.c
bsd_source/lib/libc/src_bsd/math/e_lgammaf_r.c - 8.1KB - 232 lines
162:             if(t==zero) return one/zero; /* -integer */
163:             nadj = logf(pi/fabsf(t*x));
164:             if(t<zero) *signgamp = -1;
bsd_source/lib/libc/src_bsd/math/e_powf.c - 8.7KB - 241 lines
104: 
105:         ax   = fabsf(x);
106:     /* special value of x */