Lines Matching +full:point +full:- +full:to +full:- +full:point
2 * Linux/PA-RISC Project (http://www.parisc-linux.org/)
4 * Floating-point emulation code
5 * Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org>
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 * Single Floating-point to Single Fixed-point /w truncated result
29 * Single Floating-point to Double Fixed-point /w truncated result
30 * Double Floating-point to Single Fixed-point /w truncated result
31 * Double Floating-point to Double Fixed-point /w truncated result
54 * Convert single floating-point to single fixed-point format
69 src_exponent = Sgl_exponent(src) - SGL_BIAS; in sgl_to_sgl_fcnvfxt()
96 if (Sgl_isone_sign(src)) result = -Sgl_all(temp); in sgl_to_sgl_fcnvfxt()
119 * Single Floating-point to Double Fixed-point
133 src_exponent = Sgl_exponent(src) - SGL_BIAS; in sgl_to_dbl_fcnvfxt()
193 * Double Floating-point to Single Fixed-point
207 src_exponent = Dbl_exponent(srcp1) - DBL_BIAS; in dbl_to_sgl_fcnvfxt()
235 result = -Dbl_allp1(tempp1); in dbl_to_sgl_fcnvfxt()
258 * Double Floating-point to Double Fixed-point
272 src_exponent = Dbl_exponent(srcp1) - DBL_BIAS; in dbl_to_dbl_fcnvfxt()