- t2ex
- bsd_source/lib/libc/src_bsd/complex/s_catan.c - 3.3KB - 139 lines
122: a = (x2 + (t * t))/a;
123: w = w + (0.25 * log (a)) * I;
124: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_clog.c - 2.2KB - 85 lines
71: rr = cabs(z);
72: p = log(rr);
73: rr = atan2 (cimag (z), creal (z));
- bsd_source/lib/libc/src_bsd/complex/s_cpow.c - 2.2KB - 84 lines
70: r = r * exp (-y * arga);
71: theta = theta + y * log (absa);
72: }
- bsd_source/lib/libc/src_bsd/math/e_acosh.c - 2.0KB - 71 lines
51: } else
52: return log(x)+ln2; /* acosh(huge)=log(2x) */
53: } else if(((hx-0x3ff00000)|lx)==0) {
- More results from e_acosh.c
- bsd_source/lib/libc/src_bsd/math/e_j0.c - 15.1KB - 379 lines
185: if(ix<=0x3e400000) { /* x < 2**-27 */
186: return(u00 + tpi*log(x));
187: }
- More results from e_j0.c
- bsd_source/lib/libc/src_bsd/math/e_j1.c - 14.7KB - 374 lines
183: v = one+z*(V0[0]+z*(V0[1]+z*(V0[2]+z*(V0[3]+z*V0[4]))));
184: return(x*(u/v) + tpi*(j1(x)*log(x)-one/x));
185: }
- bsd_source/lib/libc/src_bsd/math/e_jn.c - 9.3KB - 261 lines
174: v = two/x;
175: tmp = tmp*log(fabs(v*tmp));
176: if(tmp<7.09782712893383973096e+02) {
- bsd_source/lib/libc/src_bsd/math/e_lgamma_r.c - 12.2KB - 304 lines
218: *signgamp = -1;
219: return - log(-x);
220: } else return - log(x);
- More results from e_lgamma_r.c
- bsd_source/lib/libc/src_bsd/math/e_log10.c - 2.9KB - 96 lines
84: SET_HIGH_WORD(x,hx);
85: z = y*log10_2lo + ivln10*log(x);
86: return z+y*log10_2hi;
- bsd_source/lib/libc/src_bsd/math/s_asinh.c - 1.9KB - 67 lines
48: if(ix>0x41b00000) { /* |x| > 2**28 */
49: w = log(fabs(x))+ln2;
50: } else if (ix>0x40000000) { /* 2**28 > |x| > 2.0 */
- More results from s_asinh.c