- t2ex
- bsd_source/lib/libc/src_bsd/math/e_acos.c - 3.9KB - 113 lines
95: df = s;
96: SET_LOW_WORD(df,0);
97: c = (z-df*df)/(s+df);
- bsd_source/lib/libc/src_bsd/math/e_asin.c - 4.2KB - 121 lines
103: w = s;
104: SET_LOW_WORD(w,0);
105: c = (t-w*w)/(s+w);
- bsd_source/lib/libc/src_bsd/math/e_pow.c - 11.5KB - 311 lines
199: t1 = u+v;
200: SET_LOW_WORD(t1,0);
201: t2 = v-(t1-u);
- More results from e_pow.c
- bsd_source/lib/libc/src_bsd/math/e_rem_pio2.c - 5.3KB - 146 lines
132: GET_LOW_WORD(low,x);
133: SET_LOW_WORD(z,low);
134: e0 = (ix>>20)-1046; /* e0 = ilogb(z)-23; */
- bsd_source/lib/libc/src_bsd/math/k_tan.c - 5.9KB - 151 lines
93: z = w = x + y;
94: SET_LOW_WORD(z, 0);
95: v = y - (z - x);
- More results from k_tan.c
- bsd_source/lib/libc/src_bsd/math/math_private.h - 13.7KB - 415 lines
400: GET_LOW_WORD(_lw, *_dp);
401: SET_LOW_WORD(*_dp, _lw & 0xf8000000);
402: }
- bsd_source/lib/libc/src_bsd/math/s_erf.c - 12.7KB - 312 lines
236: z = x;
237: SET_LOW_WORD(z,0);
238: r = exp(-z*z-0.5625)*exp((z-x)*(z+x)+R/S);
- More results from s_erf.c