gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:GET_FLOAT_WORD from t2ex/bsd_source/lib/libc/src_bsd/math/s_cbrtf.c (0.00 seconds)
t2ex
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) */
51: {SET_FLOAT_WORD(t,0x4b800000); /* set t= 2**24 */ 52: t*=x; GET_FLOAT_WORD(high,t); SET_FLOAT_WORD(t,high/3+B2); 53: }
63: /* retore the sign bit */ 64: GET_FLOAT_WORD(high,t); 65: SET_FLOAT_WORD(t,high|sign);