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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_setbit -- set a specified bit.
  2. Copyright 1991, 1993, 1994, 1995, 1997, 1999, 2001, 2002 Free Software
  3. Foundation, 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. void
  18. mpz_setbit (mpz_ptr d, mp_bitcnt_t bit_index)
  19. {
  20.   mp_size_t dsize = d->_mp_size;
  21.   mp_ptr dp = d->_mp_d;
  22.   mp_size_t limb_index;
  23.   limb_index = bit_index / GMP_NUMB_BITS;
  24.   if (dsize >= 0)
  25.     {
  26.       if (limb_index < dsize)
  27. {
  28.   dp[limb_index] |= (mp_limb_t) 1 << (bit_index % GMP_NUMB_BITS);
  29.   d->_mp_size = dsize;
  30. }
  31.       else
  32. {
  33.   /* Ugh.  The bit should be set outside of the end of the
  34.      number.  We have to increase the size of the number.  */
  35.   if (UNLIKELY (d->_mp_alloc < limb_index + 1))
  36.             dp = _mpz_realloc (d, limb_index + 1);
  37.   MPN_ZERO (dp + dsize, limb_index - dsize);
  38.   dp[limb_index] = (mp_limb_t) 1 << (bit_index % GMP_NUMB_BITS);
  39.   d->_mp_size = limb_index + 1;
  40. }
  41.     }
  42.   else
  43.     {
  44.       mp_size_t zero_bound;
  45.       /* Simulate two's complement arithmetic, i.e. simulate
  46.  1. Set OP = ~(OP - 1) [with infinitely many leading ones].
  47.  2. Set the bit.
  48.  3. Set OP = ~OP + 1.  */
  49.       dsize = -dsize;
  50.       /* No upper bound on this loop, we're sure there's a non-zero limb
  51.  sooner ot later.  */
  52.       for (zero_bound = 0; ; zero_bound++)
  53. if (dp[zero_bound] != 0)
  54.   break;
  55.       if (limb_index > zero_bound)
  56. {
  57.   if (limb_index < dsize)
  58.             {
  59.               mp_limb_t  dlimb;
  60.               dlimb = dp[limb_index];
  61.               dlimb &= ~((mp_limb_t) 1 << (bit_index % GMP_NUMB_BITS));
  62.               dp[limb_index] = dlimb;
  63.               if (UNLIKELY (dlimb == 0 && limb_index == dsize-1))
  64.                 {
  65.                   /* high limb became zero, must normalize */
  66.                   do {
  67.                     dsize--;
  68.                   } while (dsize > 0 && dp[dsize-1] == 0);
  69.                   d->_mp_size = -dsize;
  70.                 }
  71.             }
  72. }
  73.       else if (limb_index == zero_bound)
  74. {
  75.   dp[limb_index] = ((dp[limb_index] - 1)
  76.     & ~((mp_limb_t) 1 << (bit_index % GMP_NUMB_BITS))) + 1;
  77.   if (dp[limb_index] == 0)
  78.     {
  79.       mp_size_t i;
  80.       for (i = limb_index + 1; i < dsize; i++)
  81. {
  82.   dp[i] += 1;
  83.   if (dp[i] != 0)
  84.     goto fin;
  85. }
  86.       /* We got carry all way out beyond the end of D.  Increase
  87.  its size (and allocation if necessary).  */
  88.       dsize++;
  89.       if (UNLIKELY (d->_mp_alloc < dsize))
  90.                 dp = _mpz_realloc (d, dsize);
  91.       dp[i] = 1;
  92.       d->_mp_size = -dsize;
  93.     fin:;
  94.     }
  95. }
  96.       else
  97. {
  98.   mpn_decr_u (dp + limb_index,
  99.      (mp_limb_t) 1 << (bit_index % GMP_NUMB_BITS));
  100.   dsize -= dp[dsize - 1] == 0;
  101.   d->_mp_size = -dsize;
  102. }
  103.     }
  104. }