gonzui


Format: Advanced Search

SearchGoogle itResults 21 - 30 of 48 for funcall:GET_FLOAT_WORD (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/k_tanf.c - 2.9KB - 90 lines
43:         int32_t ix,hx;
44:         GET_FLOAT_WORD(hx,x);
45:         ix = hx&0x7fffffff;    /* high word of |x| */
More results from k_tanf.c
bsd_source/lib/libc/src_bsd/math/s_asinhf.c - 1.4KB - 45 lines
28:         int32_t hx,ix;
29:         GET_FLOAT_WORD(hx,x);
30:         ix = hx&0x7fffffff;
bsd_source/lib/libc/src_bsd/math/s_atanf.c - 3.1KB - 95 lines
56: 
57:         GET_FLOAT_WORD(hx,x);
58:         ix = hx&0x7fffffff;
bsd_source/lib/libc/src_bsd/math/s_cbrtf.c - 1.9KB - 67 lines
40: 
41:         GET_FLOAT_WORD(hx,x);
42:         sign=hx&0x80000000;            /* sign= sign(x) */
More results from s_cbrtf.c
bsd_source/lib/libc/src_bsd/math/s_ceilf.c - 1.5KB - 49 lines
26: 
27:         GET_FLOAT_WORD(i0,x);
28:         jj0 = ((i0>>23)&0xff)-0x7f;
bsd_source/lib/libc/src_bsd/math/s_copysignf.c - 887B - 33 lines
28:         u_int32_t ix,iy;
29:         GET_FLOAT_WORD(ix,x);
30:         GET_FLOAT_WORD(iy,y);
More results from s_copysignf.c
bsd_source/lib/libc/src_bsd/math/s_cosf.c - 1.2KB - 45 lines
24: 
25:         GET_FLOAT_WORD(ix,x);
26: 
bsd_source/lib/libc/src_bsd/math/s_erff.c - 7.6KB - 206 lines
98:         float R,S,P,Q,s,y,z,r;
99:         GET_FLOAT_WORD(hx,x);
100:         ix = hx&0x7fffffff;
More results from s_erff.c
bsd_source/lib/libc/src_bsd/math/s_exp2f.c - 4.7KB - 135 lines
100:         /* Filter out exceptional cases. */
101:         GET_FLOAT_WORD(hx, x);
102:         ix = hx & 0x7fffffff;          /* high word of |x| */
More results from s_exp2f.c
bsd_source/lib/libc/src_bsd/math/s_expm1f.c - 4.3KB - 121 lines
40: 
41:         GET_FLOAT_WORD(hx,x);
42:         xsb = hx&0x80000000;           /* sign bit of x */
More results from s_expm1f.c