gonzui


Format: Advanced Search

SearchGoogle itResults 11 - 20 of 26 for funcall:EXTRACT_WORDS (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_log2.c - 2.6KB - 88 lines
40: 
41:         EXTRACT_WORDS(hx,lx,x);
42: 
bsd_source/lib/libc/src_bsd/math/e_pow.c - 11.5KB - 311 lines
107: 
108:         EXTRACT_WORDS(hx,lx,x);
109:         EXTRACT_WORDS(hy,ly,y);
More results from e_pow.c
bsd_source/lib/libc/src_bsd/math/e_remainder.c - 2.1KB - 82 lines
39: 
40:         EXTRACT_WORDS(hx,lx,x);
41:         EXTRACT_WORDS(hp,lp,p);
More results from e_remainder.c
bsd_source/lib/libc/src_bsd/math/e_sqrt.c - 17.9KB - 454 lines
100: 
101:         EXTRACT_WORDS(ix0,ix1,x);
102: 
bsd_source/lib/libc/src_bsd/math/ldexp.c - 4.1KB - 134 lines
102:         int32_t k,hx,lx;
103:         EXTRACT_WORDS(hx,lx,x);
104:         k = (hx&0x7ff00000)>>20;                /* extract exponent */
bsd_source/lib/libc/src_bsd/math/s_ceil.c - 2.3KB - 82 lines
36:         u_int32_t i,j;
37:         EXTRACT_WORDS(i0,i1,x);
38:         jj0 = ((i0>>20)&0x7ff)-0x3ff;
bsd_source/lib/libc/src_bsd/math/s_floor.c - 2.3KB - 83 lines
36:         u_int32_t i,j;
37:         EXTRACT_WORDS(i0,i1,x);
38:         jj0 = ((i0>>20)&0x7ff)-0x3ff;
bsd_source/lib/libc/src_bsd/math/s_logb.c - 1.1KB - 42 lines
25:         int32_t lx,ix;
26:         EXTRACT_WORDS(ix,lx,x);
27:         ix &= 0x7fffffff;                      /* high |x| */
bsd_source/lib/libc/src_bsd/math/s_lrint.c - 3.5KB - 110 lines
80: 
81:         EXTRACT_WORDS(i0, i1, x);
82:         e = ((i0 >> DBL_FRACHBITS) & 0x7ff) - DBL_EXP_BIAS;
bsd_source/lib/libc/src_bsd/math/s_lround.c - 3.3KB - 100 lines
73: 
74:         EXTRACT_WORDS(i0, i1, x);
75:         e = ((i0 >> DBL_FRACHBITS) & 0x7ff) - DBL_EXP_BIAS;