Searched refs:dst_exponent (Results 1 – 2 of 2) sorted by relevance
/linux-2.4.37.9/arch/parisc/math-emu/ |
D | fcnvxf.c | 64 register int src, dst_exponent; in sgl_to_sgl_fcnvxf() local 87 dst_exponent = 16; /* initialize for normalization */ in sgl_to_sgl_fcnvxf() 93 Find_ms_one_bit(src,dst_exponent); in sgl_to_sgl_fcnvxf() 95 if (dst_exponent >= 0) src <<= dst_exponent; in sgl_to_sgl_fcnvxf() 98 Sgl_set_exponent(result, 30+SGL_BIAS - dst_exponent); in sgl_to_sgl_fcnvxf() 135 register int src, dst_exponent; in sgl_to_dbl_fcnvxf() local 158 dst_exponent = 16; /* initialize for normalization */ in sgl_to_dbl_fcnvxf() 164 Find_ms_one_bit(src,dst_exponent); in sgl_to_dbl_fcnvxf() 166 if (dst_exponent >= 0) src <<= dst_exponent; in sgl_to_dbl_fcnvxf() 170 Dbl_set_exponent(resultp1, (30+DBL_BIAS) - dst_exponent); in sgl_to_dbl_fcnvxf() [all …]
|
D | fcnvuf.c | 66 register int dst_exponent; in sgl_to_sgl_fcnvuf() local 79 dst_exponent = 16; /* initialize for normalization */ in sgl_to_sgl_fcnvuf() 85 Find_ms_one_bit(src,dst_exponent); in sgl_to_sgl_fcnvuf() 87 src <<= dst_exponent+1; in sgl_to_sgl_fcnvuf() 89 Sgl_set_exponent(result, 30+SGL_BIAS - dst_exponent); in sgl_to_sgl_fcnvuf() 124 register int dst_exponent; in sgl_to_dbl_fcnvuf() local 138 dst_exponent = 16; /* initialize for normalization */ in sgl_to_dbl_fcnvuf() 144 Find_ms_one_bit(src,dst_exponent); in sgl_to_dbl_fcnvuf() 146 src <<= dst_exponent+1; in sgl_to_dbl_fcnvuf() 149 Dbl_set_exponent(resultp1, (30+DBL_BIAS) - dst_exponent); in sgl_to_dbl_fcnvuf() [all …]
|