ipfw: Support all possible ICMP types.
[dragonfly.git] / contrib / gmp / mpf / mul.c
blob0082aa40ad7f97ef2e1cf882ef984bdea655a26a
1 /* mpf_mul -- Multiply two floats.
3 Copyright 1993, 1994, 1996, 2001, 2005 Free Software Foundation, Inc.
5 This file is part of the GNU MP Library.
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
20 #include "gmp.h"
21 #include "gmp-impl.h"
23 void
24 mpf_mul (mpf_ptr r, mpf_srcptr u, mpf_srcptr v)
26 mp_srcptr up, vp;
27 mp_size_t usize, vsize;
28 mp_size_t sign_product;
29 mp_size_t prec = r->_mp_prec;
30 TMP_DECL;
32 TMP_MARK;
33 usize = u->_mp_size;
34 vsize = v->_mp_size;
35 sign_product = usize ^ vsize;
37 usize = ABS (usize);
38 vsize = ABS (vsize);
40 up = u->_mp_d;
41 vp = v->_mp_d;
42 if (usize > prec)
44 up += usize - prec;
45 usize = prec;
47 if (vsize > prec)
49 vp += vsize - prec;
50 vsize = prec;
53 if (usize == 0 || vsize == 0)
55 r->_mp_size = 0;
56 r->_mp_exp = 0; /* ??? */
58 else
60 mp_size_t rsize;
61 mp_limb_t cy_limb;
62 mp_ptr rp, tp;
63 mp_size_t adj;
65 rsize = usize + vsize;
66 tp = TMP_ALLOC_LIMBS (rsize);
67 cy_limb = (usize >= vsize
68 ? mpn_mul (tp, up, usize, vp, vsize)
69 : mpn_mul (tp, vp, vsize, up, usize));
71 adj = cy_limb == 0;
72 rsize -= adj;
73 prec++;
74 if (rsize > prec)
76 tp += rsize - prec;
77 rsize = prec;
79 rp = r->_mp_d;
80 MPN_COPY (rp, tp, rsize);
81 r->_mp_exp = u->_mp_exp + v->_mp_exp - adj;
82 r->_mp_size = sign_product >= 0 ? rsize : -rsize;
84 TMP_FREE;