- t2ex
- bsd_source/lib/libc/src_bsd/complex/s_ccosf.c - 2.0KB - 84 lines
63: *c = coshf(x);
64: *s = sinhf(x);
65: }
- 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_csinf.c - 2.0KB - 85 lines
64: *c = coshf(x);
65: *s = sinhf(x);
66: }
- 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);