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

数学计算

开发平台:

Unix_Linux

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