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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_divisible_ui_p -- mpz by ulong divisibility test.
  2. Copyright 2000, 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. #include "longlong.h"
  17. int
  18. mpz_divisible_ui_p (mpz_srcptr a, unsigned long d)
  19. {
  20.   mp_size_t  asize;
  21.   mp_ptr     ap;
  22.   unsigned   twos;
  23.   asize = SIZ(a);
  24.   if (UNLIKELY (d == 0))
  25.     return (asize == 0);
  26.   if (asize == 0)  /* 0 divisible by any d */
  27.     return 1;
  28.   /* For nails don't try to be clever if d is bigger than a limb, just fake
  29.      up an mpz_t and go to the main mpz_divisible_p.  */
  30.   if (d > GMP_NUMB_MAX)
  31.     {
  32.       mp_limb_t  dlimbs[2];
  33.       mpz_t      dz;
  34.       ALLOC(dz) = 2;
  35.       PTR(dz) = dlimbs;
  36.       mpz_set_ui (dz, d);
  37.       return mpz_divisible_p (a, dz);
  38.     }
  39.   ap = PTR(a);
  40.   asize = ABS(asize);  /* ignore sign of a */
  41.   if (ABOVE_THRESHOLD (asize, BMOD_1_TO_MOD_1_THRESHOLD))
  42.     return mpn_mod_1 (ap, asize, (mp_limb_t) d) == 0;
  43.   if (! (d & 1))
  44.     {
  45.       /* Strip low zero bits to get odd d required by modexact.  If d==e*2^n
  46.          and a is divisible by 2^n and by e, then it's divisible by d. */
  47.       if ((ap[0] & LOW_ZEROS_MASK (d)) != 0)
  48.         return 0;
  49.       count_trailing_zeros (twos, (mp_limb_t) d);
  50.       d >>= twos;
  51.     }
  52.   return mpn_modexact_1_odd (ap, asize, (mp_limb_t) d) == 0;
  53. }