- t2ex
- bsd_source/lib/libc/src_bsd/complex/s_ccos.c - 2.3KB - 97 lines
70: else {
71: e = exp(x);
72: ei = 0.5/e;
- bsd_source/lib/libc/src_bsd/complex/s_cexp.c - 2.0KB - 83 lines
70: y = cimag (z);
71: r = exp (x);
72: w = r * cos (y) + r * sin (y) * I;
- bsd_source/lib/libc/src_bsd/complex/s_cpow.c - 2.2KB - 84 lines
69: if (y != 0.0) {
70: r = r * exp (-y * arga);
71: theta = theta + y * log (absa);
- bsd_source/lib/libc/src_bsd/complex/s_csin.c - 2.3KB - 99 lines
72: else {
73: e = exp(x);
74: ei = 0.5/e;
- bsd_source/lib/libc/src_bsd/math/e_cosh.c - 2.7KB - 95 lines
67: if (ix < 0x40360000) {
68: t = exp(fabs(x));
69: return half*t+half/t;
- More results from e_cosh.c
- bsd_source/lib/libc/src_bsd/math/e_sinh.c - 2.5KB - 88 lines
66: /* |x| in [22, log(maxdouble)] return 0.5*exp(|x|) */
67: if (ix < 0x40862E42) return h*exp(fabs(x));
68:
- More results from e_sinh.c
- bsd_source/lib/libc/src_bsd/math/s_erf.c - 12.7KB - 312 lines
237: SET_LOW_WORD(z,0);
238: r = exp(-z*z-0.5625)*exp((z-x)*(z+x)+R/S);
239: if(hx>=0) return one-r/x; else return r/x-one;
- More results from s_erf.c