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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_mul_1 -- Multiply a limb vector with a single limb and store the
  2.    product in a second limb vector.
  3. Copyright 1991, 1992, 1993, 1994, 1996, 2000, 2001, 2002 Free Software
  4. Foundation, Inc.
  5. This file is part of the GNU MP Library.
  6. The GNU MP Library is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or (at your
  9. option) any later version.
  10. The GNU MP Library is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. #include "longlong.h"
  19. #if GMP_NAIL_BITS == 0
  20. mp_limb_t
  21. mpn_mul_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t vl)
  22. {
  23.   mp_limb_t ul, cl, hpl, lpl;
  24.   ASSERT (n >= 1);
  25.   ASSERT (MPN_SAME_OR_INCR_P (rp, up, n));
  26.   cl = 0;
  27.   do
  28.     {
  29.       ul = *up++;
  30.       umul_ppmm (hpl, lpl, ul, vl);
  31.       lpl += cl;
  32.       cl = (lpl < cl) + hpl;
  33.       *rp++ = lpl;
  34.     }
  35.   while (--n != 0);
  36.   return cl;
  37. }
  38. #endif
  39. #if GMP_NAIL_BITS >= 1
  40. mp_limb_t
  41. mpn_mul_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t vl)
  42. {
  43.   mp_limb_t shifted_vl, ul, lpl, hpl, prev_hpl, xw, cl, xl;
  44.   ASSERT (n >= 1);
  45.   ASSERT (MPN_SAME_OR_INCR_P (rp, up, n));
  46.   ASSERT_MPN (up, n);
  47.   ASSERT_LIMB (vl);
  48.   shifted_vl = vl << GMP_NAIL_BITS;
  49.   cl = 0;
  50.   prev_hpl = 0;
  51.   do
  52.     {
  53.       ul = *up++;
  54.       umul_ppmm (hpl, lpl, ul, shifted_vl);
  55.       lpl >>= GMP_NAIL_BITS;
  56.       xw = prev_hpl + lpl + cl;
  57.       cl = xw >> GMP_NUMB_BITS;
  58.       xl = xw & GMP_NUMB_MASK;
  59.       *rp++ = xl;
  60.       prev_hpl = hpl;
  61.     }
  62.   while (--n != 0);
  63.   return prev_hpl + cl;
  64. }
  65. #endif