- t2ex
- bsd_source/lib/libc/src_bsd/complex/s_casin.c - 3.7KB - 142 lines
69: if (y == 0.0) {
70: if (fabs(x) > 1.0) {
71: w = M_PI_2 + 0.0 * I;
- bsd_source/lib/libc/src_bsd/complex/s_ccos.c - 2.3KB - 97 lines
65:
66: if (fabs(x) <= 0.5) {
67: *c = cosh(x);
- bsd_source/lib/libc/src_bsd/complex/s_csin.c - 2.3KB - 99 lines
67:
68: if (fabs(x) <= 0.5) {
69: *c = cosh(x);
- bsd_source/lib/libc/src_bsd/complex/s_csqrt.c - 3.8KB - 144 lines
81: else {
82: r = fabs (x);
83: r = sqrt (r);
- More results from s_csqrt.c
- bsd_source/lib/libc/src_bsd/complex/s_ctan.c - 3.8KB - 165 lines
98:
99: x = fabs (2.0 * creal (z));
100: y = fabs (2.0 * cimag(z));
- More results from s_ctan.c
- bsd_source/lib/libc/src_bsd/math/e_asin.c - 4.2KB - 121 lines
93: /* 1> |x|>= 0.5 */
94: w = one-fabs(x);
95: t = w*0.5;
- bsd_source/lib/libc/src_bsd/math/e_atan2.c - 4.5KB - 132 lines
109: else if(hx<0&&k<-60) z=0.0; /* |y|/x < -2**60 */
110: else z=atan(fabs(y/x)); /* safe to do y/x */
111: switch (m) {
- bsd_source/lib/libc/src_bsd/math/e_cosh.c - 2.7KB - 95 lines
59: if(ix<0x3fd62e43) {
60: t = expm1(fabs(x));
61: w = one+t;
- More results from e_cosh.c
- bsd_source/lib/libc/src_bsd/math/e_j0.c - 15.1KB - 379 lines
88: if(ix>=0x7ff00000) return one/(x*x);
89: x = fabs(x);
90: if(ix >= 0x40000000) { /* |x| >= 2.0 */
- bsd_source/lib/libc/src_bsd/math/e_j1.c - 14.7KB - 374 lines
89: if(ix>=0x7ff00000) return one/x;
90: y = fabs(x);
91: if(ix >= 0x40000000) { /* |x| >= 2.0 */