- t2ex
- bsd_source/lib/libc/src_bsd/math/ldexp.c - 4.1KB - 134 lines
92: u_int32_t hx,hy;
93: GET_HIGH_WORD(hx,x);
94: GET_HIGH_WORD(hy,y);
- More results from ldexp.c
- bsd_source/lib/libc/src_bsd/math/s_asinh.c - 1.9KB - 67 lines
41: int32_t hx,ix;
42: GET_HIGH_WORD(hx,x);
43: ix = hx&0x7fffffff;
- bsd_source/lib/libc/src_bsd/math/s_atan.c - 4.6KB - 129 lines
78:
79: GET_HIGH_WORD(hx,x);
80: ix = hx&0x7fffffff;
- bsd_source/lib/libc/src_bsd/math/s_cbrt.c - 2.6KB - 91 lines
42:
43: GET_HIGH_WORD(hx,x);
44: sign=hx&0x80000000; /* sign= sign(x) */
- More results from s_cbrt.c
- bsd_source/lib/libc/src_bsd/math/s_copysign.c - 1.0KB - 44 lines
30: u_int32_t hx,hy;
31: GET_HIGH_WORD(hx,x);
32: GET_HIGH_WORD(hy,y);
- More results from s_copysign.c
- bsd_source/lib/libc/src_bsd/math/s_cos.c - 2.4KB - 88 lines
58: /* High word of x. */
59: GET_HIGH_WORD(ix,x);
60:
- bsd_source/lib/libc/src_bsd/math/s_erf.c - 12.7KB - 312 lines
194: double R,S,P,Q,s,y,z,r;
195: GET_HIGH_WORD(hx,x);
196: ix = hx&0x7fffffff;
- More results from s_erf.c
- bsd_source/lib/libc/src_bsd/math/s_exp2.c - 16.7KB - 402 lines
348: /* Filter out exceptional cases. */
349: GET_HIGH_WORD(hx,x);
350: ix = hx & 0x7fffffff; /* high word of |x| */
- bsd_source/lib/libc/src_bsd/math/s_expm1.c - 8.9KB - 230 lines
137:
138: GET_HIGH_WORD(hx,x);
139: xsb = hx&0x80000000; /* sign bit of x */
- More results from s_expm1.c
- bsd_source/lib/libc/src_bsd/math/s_fabs.c - 903B - 41 lines
28: u_int32_t high;
29: GET_HIGH_WORD(high,x);
30: SET_HIGH_WORD(x,high&0x7fffffff);