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

数学计算

开发平台:

Unix_Linux

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