gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 10 of 48 for funcall:GET_FLOAT_WORD (0.07 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/e_acosf.c - 2.7KB - 77 lines
39:         int32_t hx,ix;
40:         GET_FLOAT_WORD(hx,x);
41:         ix = hx&0x7fffffff;
More results from e_acosf.c
bsd_source/lib/libc/src_bsd/math/e_acoshf.c - 1.4KB - 45 lines
27:         int32_t hx;
28:         GET_FLOAT_WORD(hx,x);
29:         if(hx<0x3f800000) {            /* x < 1 */
bsd_source/lib/libc/src_bsd/math/e_asinf.c - 2.7KB - 80 lines
41:         int32_t hx,ix;
42:         GET_FLOAT_WORD(hx,x);
43:         ix = hx&0x7fffffff;
More results from e_asinf.c
bsd_source/lib/libc/src_bsd/math/e_atan2f.c - 3.2KB - 93 lines
32: 
33:         GET_FLOAT_WORD(hx,x);
34:         ix = hx&0x7fffffff;
More results from e_atan2f.c
bsd_source/lib/libc/src_bsd/math/e_atanhf.c - 1.2KB - 41 lines
26:         int32_t hx,ix;
27:         GET_FLOAT_WORD(hx,x);
28:         ix = hx&0x7fffffff;
bsd_source/lib/libc/src_bsd/math/e_coshf.c - 1.6KB - 60 lines
27: 
28:         GET_FLOAT_WORD(ix,x);
29:         ix &= 0x7fffffff;
bsd_source/lib/libc/src_bsd/math/e_expf.c - 3.2KB - 92 lines
44: 
45:         GET_FLOAT_WORD(hx,x);
46:         xsb = (hx>>31)&1;              /* sign bit of x */
More results from e_expf.c
bsd_source/lib/libc/src_bsd/math/e_fmodf.c - 3.1KB - 101 lines
31: 
32:         GET_FLOAT_WORD(hx,x);
33:         GET_FLOAT_WORD(hy,y);
More results from e_fmodf.c
bsd_source/lib/libc/src_bsd/math/e_hypotf.c - 2.5KB - 79 lines
24: 
25:         GET_FLOAT_WORD(ha,x);
26:         ha &= 0x7fffffff;
More results from e_hypotf.c
bsd_source/lib/libc/src_bsd/math/e_lgammaf_r.c - 8.1KB - 232 lines
94: 
95:         GET_FLOAT_WORD(ix,x);
96:         ix &= 0x7fffffff;
More results from e_lgammaf_r.c