source: trunk/third/gmp/mpz/divis_ui.c @ 18191

Revision 18191, 2.0 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18190, which included commits to RCS files with non-trunk default branches.
Line 
1/* mpz_divisible_ui_p -- mpz by ulong divisibility test.
2
3Copyright 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of the GNU MP Library.
6
7The GNU MP Library is free software; you can redistribute it and/or modify
8it under the terms of the GNU Lesser General Public License as published by
9the Free Software Foundation; either version 2.1 of the License, or (at your
10option) any later version.
11
12The GNU MP Library is distributed in the hope that it will be useful, but
13WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
15License for more details.
16
17You should have received a copy of the GNU Lesser General Public License
18along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20MA 02111-1307, USA. */
21
22#include "gmp.h"
23#include "gmp-impl.h"
24#include "longlong.h"
25
26
27int
28mpz_divisible_ui_p (mpz_srcptr a, unsigned long d)
29{
30  mp_size_t  asize;
31  mp_ptr     ap;
32  unsigned   twos;
33
34  if (d == 0)
35    DIVIDE_BY_ZERO;
36
37  asize = SIZ(a);
38  if (asize == 0)  /* 0 divisible by any d */
39    return 1;
40
41  /* For nails don't try to be clever if d is bigger than a limb, just fake
42     up an mpz_t and go to the main mpz_divisible_p.  */
43  if (d > GMP_NUMB_MAX)
44    {
45      mp_limb_t  dlimbs[2];
46      mpz_t      dz;
47      ALLOC(dz) = 2;
48      PTR(dz) = dlimbs;
49      mpz_set_ui (dz, d);
50      return mpz_divisible_p (a, dz);
51    }
52
53  ap = PTR(a);
54  asize = ABS(asize);  /* ignore sign of a */
55
56  if (BELOW_THRESHOLD (asize, MODEXACT_1_ODD_THRESHOLD))
57    return mpn_mod_1 (ap, asize, (mp_limb_t) d) == 0;
58
59  if (! (d & 1))
60    {
61      /* Strip low zero bits to get odd d required by modexact.  If d==e*2^n
62         and a is divisible by 2^n and by e, then it's divisible by d. */
63
64      if ((ap[0] & LOW_ZEROS_MASK (d)) != 0)
65        return 0;
66
67      count_trailing_zeros (twos, (mp_limb_t) d);
68      d >>= twos;
69    }
70
71  return mpn_modexact_1_odd (ap, asize, (mp_limb_t) d) == 0;
72}
Note: See TracBrowser for help on using the repository browser.