Lines Matching +full:half +full:- +full:precision
1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Linux/PA-RISC Project (http://www.parisc-linux.org/)
5 * Floating-point emulation code
6 * Copyright (C) 2001 Hewlett-Packard (Paul Bame) <bame@debian.org>
15 * Single_add: add two single precision values.
33 * Single_add: add two single precision values.
259 diff_exponent = result_exponent - right_exponent; in sgl_fadd()
305 /* Must have been "x-x" or "x+(-x)". */ in sgl_fadd()
311 result_exponent--; in sgl_fadd()
347 if((result_exponent -= 8) <= 0 && !underflowtrap) in sgl_fadd()
355 if((result_exponent -= 4) <= 0 && !underflowtrap) in sgl_fadd()
375 result_exponent -= 3; in sgl_fadd()
382 result_exponent -= 2; in sgl_fadd()
391 result_exponent -= 1; in sgl_fadd()
415 Sgl_right_align(result,/*by*/(1-result_exponent),extent); in sgl_fadd()
453 /* either exactly half way and odd or more than 1/2ulp */ in sgl_fadd()