- t2ex
- bsd_source/lib/libc/src_bsd/math/e_acos.c - 3.9KB - 113 lines
69: u_int32_t lx;
70: GET_LOW_WORD(lx,x);
71: if(((ix-0x3ff00000)|lx)==0) { /* |x|==1 */
- bsd_source/lib/libc/src_bsd/math/e_asin.c - 4.2KB - 121 lines
77: u_int32_t lx;
78: GET_LOW_WORD(lx,x);
79: if(((ix-0x3ff00000)|lx)==0)
- bsd_source/lib/libc/src_bsd/math/e_cosh.c - 2.7KB - 95 lines
75: /* |x| in [log(maxdouble), overflowthresold] */
76: GET_LOW_WORD(lx,x);
77: if (ix<0x408633CE ||
- bsd_source/lib/libc/src_bsd/math/e_exp.c - 5.9KB - 169 lines
117: u_int32_t lx;
118: GET_LOW_WORD(lx,x);
119: if(((hx&0xfffff)|lx)!=0)
- bsd_source/lib/libc/src_bsd/math/e_hypot.c - 4.1KB - 134 lines
71: w = a+b; /* for sNaN */
72: GET_LOW_WORD(low,a);
73: if(((ha&0xfffff)|low)==0) w = a;
- More results from e_hypot.c
- bsd_source/lib/libc/src_bsd/math/e_lgamma_r.c - 12.2KB - 304 lines
178: if(ix<0x43300000) z = y+two52; /* exact */
179: GET_LOW_WORD(n,z);
180: n &= 1;
- bsd_source/lib/libc/src_bsd/math/e_rem_pio2.c - 5.3KB - 146 lines
131: /* set z = scalbn(|x|,ilogb(x)-23) */
132: GET_LOW_WORD(low,x);
133: SET_LOW_WORD(z,low);
- bsd_source/lib/libc/src_bsd/math/e_sinh.c - 2.5KB - 88 lines
69: /* |x| in [log(maxdouble), overflowthresold] */
70: GET_LOW_WORD(lx,x);
71: if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(u_int32_t)0x8fb9f87d))) {
- bsd_source/lib/libc/src_bsd/math/k_tan.c - 5.9KB - 151 lines
83: u_int32_t low;
84: GET_LOW_WORD(low, x);
85: if(((ix | low) | (iy + 1)) == 0)
- bsd_source/lib/libc/src_bsd/math/math_private.h - 13.7KB - 415 lines
399:
400: GET_LOW_WORD(_lw, *_dp);
401: SET_LOW_WORD(*_dp, _lw & 0xf8000000);