gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 20 of 38 for funcall:GET_HIGH_WORD (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_log.c - 5.0KB - 144 lines
100:             k -= 54; x *= two54; /* subnormal number, scale up x */
101:             GET_HIGH_WORD(hx,x);
102:         } 
bsd_source/lib/libc/src_bsd/math/e_log10.c - 2.9KB - 96 lines
76:             k -= 54; x *= two54; /* subnormal number, scale up x */
77:             GET_HIGH_WORD(hx,x);
78:         }
bsd_source/lib/libc/src_bsd/math/e_log2.c - 2.6KB - 88 lines
48:             k -= 54; x *= two54; /* subnormal number, scale up x */
49:             GET_HIGH_WORD(hx,x);
50:         } 
bsd_source/lib/libc/src_bsd/math/e_pow.c - 11.5KB - 311 lines
206:             if(ix<0x00100000)
207:                 {ax *= two53; n -= 53; GET_HIGH_WORD(ix,ax); }
208:             n  += ((ix)>>20)-0x3ff;
More results from e_pow.c
bsd_source/lib/libc/src_bsd/math/e_rem_pio2.c - 5.3KB - 146 lines
60: 
61:         GET_HIGH_WORD(hx,x);           /* high word of x */
62:         ix = hx&0x7fffffff;
More results from e_rem_pio2.c
bsd_source/lib/libc/src_bsd/math/e_remainder.c - 2.1KB - 82 lines
69:         }
70:         GET_HIGH_WORD(hx,x);
71:         SET_HIGH_WORD(x,hx^sx);
bsd_source/lib/libc/src_bsd/math/e_sinh.c - 2.5KB - 88 lines
48:     /* High word of |x|. */
49:         GET_HIGH_WORD(jx,x);
50:         ix = jx&0x7fffffff;
bsd_source/lib/libc/src_bsd/math/k_cos.c - 3.3KB - 84 lines
64:         int32_t ix;
65:         GET_HIGH_WORD(ix,x);
66:         ix &= 0x7fffffff;                      /* ix = |x|'s high word*/
bsd_source/lib/libc/src_bsd/math/k_sin.c - 2.5KB - 67 lines
57:         int32_t ix;
58:         GET_HIGH_WORD(ix,x);
59:         ix &= 0x7fffffff;                      /* high word of x */
bsd_source/lib/libc/src_bsd/math/k_tan.c - 5.9KB - 151 lines
78: 
79:         GET_HIGH_WORD(hx, x);  /* high word of x */
80:         ix = hx & 0x7fffffff;                  /* high word of |x| */