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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_add, mpz_sub -- add or subtract integers.
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001 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. #ifdef BERKELEY_MP
  17. #include "mp.h"
  18. #ifdef OPERATION_add
  19. #define FUNCTION     madd
  20. #define VARIATION
  21. #endif
  22. #ifdef OPERATION_sub
  23. #define FUNCTION     msub
  24. #define VARIATION    -
  25. #endif
  26. #define ARGUMENTS    mpz_srcptr u, mpz_srcptr v, mpz_ptr w
  27. #else /* normal GMP */
  28. #ifdef OPERATION_add
  29. #define FUNCTION     mpz_add
  30. #define VARIATION
  31. #endif
  32. #ifdef OPERATION_sub
  33. #define FUNCTION     mpz_sub
  34. #define VARIATION    -
  35. #endif
  36. #define ARGUMENTS    mpz_ptr w, mpz_srcptr u, mpz_srcptr v
  37. #endif
  38. #ifndef FUNCTION
  39. Error, need OPERATION_add or OPERATION_sub
  40. #endif
  41. void
  42. FUNCTION (ARGUMENTS)
  43. {
  44.   mp_srcptr up, vp;
  45.   mp_ptr wp;
  46.   mp_size_t usize, vsize, wsize;
  47.   mp_size_t abs_usize;
  48.   mp_size_t abs_vsize;
  49.   usize = u->_mp_size;
  50.   vsize = VARIATION v->_mp_size;
  51.   abs_usize = ABS (usize);
  52.   abs_vsize = ABS (vsize);
  53.   if (abs_usize < abs_vsize)
  54.     {
  55.       /* Swap U and V. */
  56.       MPZ_SRCPTR_SWAP (u, v);
  57.       MP_SIZE_T_SWAP (usize, vsize);
  58.       MP_SIZE_T_SWAP (abs_usize, abs_vsize);
  59.     }
  60.   /* True: ABS_USIZE >= ABS_VSIZE.  */
  61.   /* If not space for w (and possible carry), increase space.  */
  62.   wsize = abs_usize + 1;
  63.   if (w->_mp_alloc < wsize)
  64.     _mpz_realloc (w, wsize);
  65.   /* These must be after realloc (u or v may be the same as w).  */
  66.   up = u->_mp_d;
  67.   vp = v->_mp_d;
  68.   wp = w->_mp_d;
  69.   if ((usize ^ vsize) < 0)
  70.     {
  71.       /* U and V have different sign.  Need to compare them to determine
  72.  which operand to subtract from which.  */
  73.       /* This test is right since ABS_USIZE >= ABS_VSIZE.  */
  74.       if (abs_usize != abs_vsize)
  75. {
  76.   mpn_sub (wp, up, abs_usize, vp, abs_vsize);
  77.   wsize = abs_usize;
  78.   MPN_NORMALIZE (wp, wsize);
  79.   if (usize < 0)
  80.     wsize = -wsize;
  81. }
  82.       else if (mpn_cmp (up, vp, abs_usize) < 0)
  83. {
  84.   mpn_sub_n (wp, vp, up, abs_usize);
  85.   wsize = abs_usize;
  86.   MPN_NORMALIZE (wp, wsize);
  87.   if (usize >= 0)
  88.     wsize = -wsize;
  89. }
  90.       else
  91. {
  92.   mpn_sub_n (wp, up, vp, abs_usize);
  93.   wsize = abs_usize;
  94.   MPN_NORMALIZE (wp, wsize);
  95.   if (usize < 0)
  96.     wsize = -wsize;
  97. }
  98.     }
  99.   else
  100.     {
  101.       /* U and V have same sign.  Add them.  */
  102.       mp_limb_t cy_limb = mpn_add (wp, up, abs_usize, vp, abs_vsize);
  103.       wp[abs_usize] = cy_limb;
  104.       wsize = abs_usize + cy_limb;
  105.       if (usize < 0)
  106. wsize = -wsize;
  107.     }
  108.   w->_mp_size = wsize;
  109. }