- t2ex
- bsd_source/lib/libc/src_bsd/complex/s_ccosf.c - 2.0KB - 84 lines
66: else {
67: e = expf(x);
68: ei = 0.5f/e;
- bsd_source/lib/libc/src_bsd/complex/s_cexpf.c - 1.6KB - 67 lines
63:
64: r = expf( crealf(z) );
65: w = r * cosf( cimagf(z) ) + r * sinf( cimagf(z) ) * I;
- bsd_source/lib/libc/src_bsd/complex/s_cpowf.c - 2.0KB - 71 lines
65: if (y != 0.0f) {
66: r = r * expf (-y * arga);
67: theta = theta + y * logf (absa);
- bsd_source/lib/libc/src_bsd/complex/s_csinf.c - 2.0KB - 85 lines
67: else {
68: e = expf(x);
69: ei = 0.5f/e;
- bsd_source/lib/libc/src_bsd/math/e_coshf.c - 1.6KB - 60 lines
43: if (ix < 0x41b00000) {
44: t = expf(fabsf(x));
45: return half*t+half/t;
- More results from e_coshf.c
- bsd_source/lib/libc/src_bsd/math/e_sinhf.c - 1.6KB - 56 lines
44: /* |x| in [22, log(maxdouble)] return 0.5*exp(|x|) */
45: if (ix < 0x42b17180) return h*expf(fabsf(x));
46:
- More results from e_sinhf.c
- bsd_source/lib/libc/src_bsd/math/s_erff.c - 7.6KB - 206 lines
142: SET_FLOAT_WORD(z,ix&0xfffff000);
143: r = expf(-z*z-(float)0.5625)*expf((z-x)*(z+x)+R/S);
144: if(hx>=0) return one-r/x; else return r/x-one;
- More results from s_erff.c