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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_add_ui, mpz_sub_ui -- Add or subtract an mpz_t and an unsigned
  2.    one-word integer.
  3. Copyright 1991, 1993, 1994, 1996, 1999, 2000, 2001, 2002, 2004 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. #ifdef OPERATION_add_ui
  19. #define FUNCTION          mpz_add_ui
  20. #define FUNCTION2         mpz_add
  21. #define VARIATION_CMP     >=
  22. #define VARIATION_NEG
  23. #define VARIATION_UNNEG   -
  24. #endif
  25. #ifdef OPERATION_sub_ui
  26. #define FUNCTION          mpz_sub_ui
  27. #define FUNCTION2         mpz_sub
  28. #define VARIATION_CMP     <
  29. #define VARIATION_NEG     -
  30. #define VARIATION_UNNEG
  31. #endif
  32. #ifndef FUNCTION
  33. Error, need OPERATION_add_ui or OPERATION_sub_ui
  34. #endif
  35. void
  36. FUNCTION (mpz_ptr w, mpz_srcptr u, unsigned long int vval)
  37. {
  38.   mp_srcptr up;
  39.   mp_ptr wp;
  40.   mp_size_t usize, wsize;
  41.   mp_size_t abs_usize;
  42. #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
  43.   if (vval > GMP_NUMB_MAX)
  44.     {
  45.       mpz_t v;
  46.       mp_limb_t vl[2];
  47.       PTR(v) = vl;
  48.       vl[0] = vval & GMP_NUMB_MASK;
  49.       vl[1] = vval >> GMP_NUMB_BITS;
  50.       SIZ(v) = 2;
  51.       FUNCTION2 (w, u, v);
  52.       return;
  53.     }
  54. #endif
  55.   usize = u->_mp_size;
  56.   abs_usize = ABS (usize);
  57.   /* If not space for W (and possible carry), increase space.  */
  58.   wsize = abs_usize + 1;
  59.   if (w->_mp_alloc < wsize)
  60.     _mpz_realloc (w, wsize);
  61.   /* These must be after realloc (U may be the same as W).  */
  62.   up = u->_mp_d;
  63.   wp = w->_mp_d;
  64.   if (abs_usize == 0)
  65.     {
  66.       wp[0] = vval;
  67.       w->_mp_size = VARIATION_NEG (vval != 0);
  68.       return;
  69.     }
  70.   if (usize VARIATION_CMP 0)
  71.     {
  72.       mp_limb_t cy;
  73.       cy = mpn_add_1 (wp, up, abs_usize, (mp_limb_t) vval);
  74.       wp[abs_usize] = cy;
  75.       wsize = VARIATION_NEG (abs_usize + cy);
  76.     }
  77.   else
  78.     {
  79.       /* The signs are different.  Need exact comparison to determine
  80.  which operand to subtract from which.  */
  81.       if (abs_usize == 1 && up[0] < vval)
  82. {
  83.   wp[0] = vval - up[0];
  84.   wsize = VARIATION_NEG 1;
  85. }
  86.       else
  87. {
  88.   mpn_sub_1 (wp, up, abs_usize, (mp_limb_t) vval);
  89.   /* Size can decrease with at most one limb.  */
  90.   wsize = VARIATION_UNNEG (abs_usize - (wp[abs_usize - 1] == 0));
  91. }
  92.     }
  93.   w->_mp_size = wsize;
  94. }