gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 8 of 8 for funcall:sinf (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/complex/s_ccosf.c - 2.0KB - 84 lines
81:         _cchshf( cimagf(z), &ch, &sh );
82:         w = cosf( crealf(z) ) * ch + ( -sinf( crealf(z) ) * sh) * I;
83:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_ccoshf.c - 1.6KB - 58 lines
55:         y = cimagf(z);
56:         w = coshf (x) * cosf (y)  +  (sinhf (x) * sinf (y)) * I;
57:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_cexpf.c - 1.6KB - 67 lines
64:         r = expf( crealf(z) );
65:         w = r * cosf( cimagf(z) ) +  r * sinf( cimagf(z) ) * I;
66:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_cpowf.c - 2.0KB - 71 lines
68:         }
69:         w = r * cosf (theta) + (r * sinf (theta)) * I;
70:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_csinf.c - 2.0KB - 85 lines
82:         cchshf(cimagf(z), &ch, &sh);
83:         w = sinf(crealf(z)) * ch  + (cosf(crealf(z)) * sh) * I;
84:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_csinhf.c - 1.6KB - 57 lines
54:         y = cimagf(z);
55:         w = sinhf (x) * cosf (y)  +  (coshf (x) * sinf (y)) * I;
56:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_ctanf.c - 3.4KB - 148 lines
145:         }
146:         w = sinf (2.0f * crealf(z)) / d + (sinhf (2.0f * cimagf(z)) / d) * I;
147:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_ctanhf.c - 1.6KB - 59 lines
56:         d = coshf (2.0f * x) + cosf (2.0f * y);
57:         w = sinhf (2.0f * x) / d  +  (sinf (2.0f * y) / d) * I;
58:         return (w);