gonzui


Format: Advanced Search

SearchGoogle itResults 41 - 48 of 48 for funcall:GET_FLOAT_WORD (0.03 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/s_nexttowardf.c - 2.5KB - 74 lines
32: 
33:         GET_FLOAT_WORD(hx,x);
34:         EXTRACT_WORDS(hy,ly,y);
bsd_source/lib/libc/src_bsd/math/s_remquof.c - 3.6KB - 120 lines
33: 
34:         GET_FLOAT_WORD(hx,x);
35:         GET_FLOAT_WORD(hy,y);
More results from s_remquof.c
bsd_source/lib/libc/src_bsd/math/s_rintf.c - 1.8KB - 60 lines
31:         volatile float w;      /* clip extra precision */
32:         GET_FLOAT_WORD(i0,x);
33:         sx = (i0>>31)&1;
More results from s_rintf.c
bsd_source/lib/libc/src_bsd/math/s_scalbnf.c - 1.9KB - 56 lines
28:         int32_t k,ix;
29:         GET_FLOAT_WORD(ix,x);
30:         k = (ix&0x7f800000)>>23;                /* extract exponent */
More results from s_scalbnf.c
bsd_source/lib/libc/src_bsd/math/s_sinf.c - 1.2KB - 45 lines
24: 
25:         GET_FLOAT_WORD(ix,x);
26: 
bsd_source/lib/libc/src_bsd/math/s_tanf.c - 1.1KB - 40 lines
24: 
25:         GET_FLOAT_WORD(ix,x);
26: 
bsd_source/lib/libc/src_bsd/math/s_tanhf.c - 1.6KB - 54 lines
26: 
27:         GET_FLOAT_WORD(jx,x);
28:         ix = jx&0x7fffffff;
bsd_source/lib/libc/src_bsd/math/s_truncf.c - 1.5KB - 55 lines
36:         u_int32_t i;
37:         GET_FLOAT_WORD(i0,x);
38:         jj0 = ((i0>>23)&0xff)-0x7f;