- t2ex
- bsd_source/lib/libc/src_bsd/math/e_acos.c - 3.9KB - 113 lines
65: int32_t hx,ix;
66: GET_HIGH_WORD(hx,x);
67: ix = hx&0x7fffffff;
- bsd_source/lib/libc/src_bsd/math/e_asin.c - 4.2KB - 121 lines
73: int32_t hx,ix;
74: GET_HIGH_WORD(hx,x);
75: ix = hx&0x7fffffff;
- bsd_source/lib/libc/src_bsd/math/e_atan2.c - 4.5KB - 132 lines
114: u_int32_t zh;
115: GET_HIGH_WORD(zh,z);
116: SET_HIGH_WORD(z,zh ^ 0x80000000);
- bsd_source/lib/libc/src_bsd/math/e_cosh.c - 2.7KB - 95 lines
51: /* High word of |x|. */
52: GET_HIGH_WORD(ix,x);
53: ix &= 0x7fffffff;
- bsd_source/lib/libc/src_bsd/math/e_exp.c - 5.9KB - 169 lines
109:
110: GET_HIGH_WORD(hx,x);
111: xsb = (hx>>31)&1; /* sign bit of x */
- More results from e_exp.c
- bsd_source/lib/libc/src_bsd/math/e_hypot.c - 4.1KB - 134 lines
58:
59: GET_HIGH_WORD(ha,x);
60: ha &= 0x7fffffff;
- More results from e_hypot.c
- bsd_source/lib/libc/src_bsd/math/e_j0.c - 15.1KB - 379 lines
85:
86: GET_HIGH_WORD(hx,x);
87: ix = hx&0x7fffffff;
- More results from e_j0.c
- bsd_source/lib/libc/src_bsd/math/e_j1.c - 14.7KB - 374 lines
86:
87: GET_HIGH_WORD(hx,x);
88: ix = hx&0x7fffffff;
- More results from e_j1.c
- bsd_source/lib/libc/src_bsd/math/e_jn.c - 9.3KB - 261 lines
251: /* quit if b is -inf */
252: GET_HIGH_WORD(high,b);
253: for(i=1;i<n&&high!=0xfff00000;i++){
- More results from e_jn.c
- bsd_source/lib/libc/src_bsd/math/e_lgamma_r.c - 12.2KB - 304 lines
158:
159: GET_HIGH_WORD(ix,x);
160: ix &= 0x7fffffff;