gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:SET_FLOAT_WORD from t2ex/bsd_source/lib/libc/src_bsd/math/s_scalbnf.c (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/math/s_scalbnf.c - 1.9KB - 56 lines
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;