Search | Google it | Results 1 - 1 of 1 for funcall:SET_FLOAT_WORD from t2ex/bsd_source/lib/libc/src_bsd/math/s_scalbnf.c (0.00 seconds) |
41: if (k > 0) /* normal result */ 42: {SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23)); return x;} 43: if (k <= -25) 47: k += 25; /* subnormal result */ 48: SET_FLOAT_WORD(x,(ix&0x807fffff)|(k<<23)); 49: return x*twom25;