mul.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:2k
源码类别:

数学计算

开发平台:

Unix_Linux

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