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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_scan0 -- search for a 0 bit.
  2. Copyright 2000, 2001, 2002, 2004 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. #include "longlong.h"
  17. /* mpn_scan0 can't be used for the u>0 search since there might not be a 0
  18.    bit before the end of the data.  mpn_scan1 could be used for the inverted
  19.    search under u<0, but usually the search won't go very far so it seems
  20.    reasonable to inline that code.  */
  21. mp_bitcnt_t
  22. mpz_scan0 (mpz_srcptr u, mp_bitcnt_t starting_bit)
  23. {
  24.   mp_srcptr      u_ptr = PTR(u);
  25.   mp_size_t      size = SIZ(u);
  26.   mp_size_t      abs_size = ABS(size);
  27.   mp_srcptr      u_end = u_ptr + abs_size;
  28.   mp_size_t      starting_limb = starting_bit / GMP_NUMB_BITS;
  29.   mp_srcptr      p = u_ptr + starting_limb;
  30.   mp_limb_t      limb;
  31.   int            cnt;
  32.   /* When past end, there's an immediate 0 bit for u>=0, or no 0 bits for
  33.      u<0.  Notice this test picks up all cases of u==0 too. */
  34.   if (starting_limb >= abs_size)
  35.     return (size >= 0 ? starting_bit : ULONG_MAX);
  36.   limb = *p;
  37.   if (size >= 0)
  38.     {
  39.       /* Mask to 1 all bits before starting_bit, thus ignoring them. */
  40.       limb |= (CNST_LIMB(1) << (starting_bit % GMP_NUMB_BITS)) - 1;
  41.       /* Search for a limb which isn't all ones.  If the end is reached then
  42.          the zero bit immediately past the end is returned.  */
  43.       while (limb == GMP_NUMB_MAX)
  44.         {
  45.           p++;
  46.           if (p == u_end)
  47.             return (mp_bitcnt_t) abs_size * GMP_NUMB_BITS;
  48.           limb = *p;
  49.         }
  50.       /* Now seek low 1 bit. */
  51.       limb = ~limb;
  52.     }
  53.   else
  54.     {
  55.       mp_srcptr  q;
  56.       /* If there's a non-zero limb before ours then we're in the ones
  57.          complement region.  Search from *(p-1) downwards since that might
  58.          give better cache locality, and since a non-zero in the middle of a
  59.          number is perhaps a touch more likely than at the end.  */
  60.       q = p;
  61.       while (q != u_ptr)
  62.         {
  63.           q--;
  64.           if (*q != 0)
  65.             goto inverted;
  66.         }
  67.       /* Adjust so ~limb implied by searching for 1 bit below becomes -limb.
  68.          If limb==0 here then this isn't the beginning of twos complement
  69.          inversion, but that doesn't matter because limb==0 is a zero bit
  70.          immediately (-1 is all ones for below).  */
  71.       limb--;
  72.     inverted:
  73.       /* Now seeking a 1 bit. */
  74.       /* Mask to 0 all bits before starting_bit, thus ignoring them. */
  75.       limb &= (MP_LIMB_T_MAX << (starting_bit % GMP_NUMB_BITS));
  76.       if (limb == 0)
  77.         {
  78.           /* If the high limb is zero after masking, then no 1 bits past
  79.              starting_bit.  */
  80.           p++;
  81.           if (p == u_end)
  82.             return ULONG_MAX;
  83.           /* Search further for a non-zero limb.  The high limb is non-zero,
  84.              if nothing else.  */
  85.           for (;;)
  86.             {
  87.               limb = *p;
  88.               if (limb != 0)
  89.                 break;
  90.               p++;
  91.               ASSERT (p < u_end);
  92.             }
  93.         }
  94.     }
  95.   ASSERT (limb != 0);
  96.   count_trailing_zeros (cnt, limb);
  97.   return (mp_bitcnt_t) (p - u_ptr) * GMP_NUMB_BITS + cnt;
  98. }