Searched refs:dst_exponent (Results 1 – 2 of 2) sorted by relevance
/linux-6.1.9/arch/parisc/math-emu/ |
D | fcnvxf.c | 51 register int src, dst_exponent; in sgl_to_sgl_fcnvxf() local 74 dst_exponent = 16; /* initialize for normalization */ in sgl_to_sgl_fcnvxf() 80 Find_ms_one_bit(src,dst_exponent); in sgl_to_sgl_fcnvxf() 82 if (dst_exponent >= 0) src <<= dst_exponent; in sgl_to_sgl_fcnvxf() 85 Sgl_set_exponent(result, 30+SGL_BIAS - dst_exponent); in sgl_to_sgl_fcnvxf() 122 register int src, dst_exponent; in sgl_to_dbl_fcnvxf() local 145 dst_exponent = 16; /* initialize for normalization */ in sgl_to_dbl_fcnvxf() 151 Find_ms_one_bit(src,dst_exponent); in sgl_to_dbl_fcnvxf() 153 if (dst_exponent >= 0) src <<= dst_exponent; in sgl_to_dbl_fcnvxf() 157 Dbl_set_exponent(resultp1, (30+DBL_BIAS) - dst_exponent); in sgl_to_dbl_fcnvxf() [all …]
|
D | fcnvuf.c | 53 register int dst_exponent; in sgl_to_sgl_fcnvuf() local 66 dst_exponent = 16; /* initialize for normalization */ in sgl_to_sgl_fcnvuf() 72 Find_ms_one_bit(src,dst_exponent); in sgl_to_sgl_fcnvuf() 74 src <<= dst_exponent+1; in sgl_to_sgl_fcnvuf() 76 Sgl_set_exponent(result, 30+SGL_BIAS - dst_exponent); in sgl_to_sgl_fcnvuf() 111 register int dst_exponent; in sgl_to_dbl_fcnvuf() local 125 dst_exponent = 16; /* initialize for normalization */ in sgl_to_dbl_fcnvuf() 131 Find_ms_one_bit(src,dst_exponent); in sgl_to_dbl_fcnvuf() 133 src <<= dst_exponent+1; in sgl_to_dbl_fcnvuf() 136 Dbl_set_exponent(resultp1, (30+DBL_BIAS) - dst_exponent); in sgl_to_dbl_fcnvuf() [all …]
|