source: trunk/third/gmp/mpz/gcd_ui.c @ 22254

Revision 22254, 1.9 KB checked in by ghudson, 19 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r22253, which included commits to RCS files with non-trunk default branches.
Line 
1/* mpz_gcd_ui -- Calculate the greatest common divisior of two integers.
2
3Copyright 1994, 1996, 1999, 2000, 2001, 2002, 2003 Free Software Foundation,
4Inc.
5
6This file is part of the GNU MP Library.
7
8The GNU MP Library is free software; you can redistribute it and/or modify
9it under the terms of the GNU Lesser General Public License as published by
10the Free Software Foundation; either version 2.1 of the License, or (at your
11option) any later version.
12
13The GNU MP Library is distributed in the hope that it will be useful, but
14WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
16License for more details.
17
18You should have received a copy of the GNU Lesser General Public License
19along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
20the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
21MA 02111-1307, USA. */
22
23#include <stdio.h> /* for NULL */
24#include "gmp.h"
25#include "gmp-impl.h"
26
27unsigned long int
28mpz_gcd_ui (mpz_ptr w, mpz_srcptr u, unsigned long int v)
29{
30  mp_size_t un;
31  mp_limb_t res;
32
33#if GMP_NAIL_BITS != 0
34  if (v > GMP_NUMB_MAX)
35    {
36      mpz_t vz;
37      mp_limb_t vlimbs[2];
38      vlimbs[0] = v & GMP_NUMB_MASK;
39      vlimbs[1] = v >> GMP_NUMB_BITS;
40      PTR(vz) = vlimbs;
41      SIZ(vz) = 2;
42      mpz_gcd (w, u, vz);
43      return;
44    }
45#endif
46
47  un = ABSIZ(u);
48
49  if (un == 0)
50    res = v;
51  else if (v == 0)
52    {
53      if (w != NULL)
54        {
55          if (u != w)
56            {
57              MPZ_REALLOC (w, un);
58              MPN_COPY (PTR(w), PTR(u), un);
59            }
60          SIZ(w) = un;
61        }
62      /* Return u if it fits a ulong, otherwise 0. */
63      res = PTR(u)[0];
64      return (un == 1 && res <= ULONG_MAX ? res : 0);
65    }
66  else
67    res = mpn_gcd_1 (PTR(u), un, (mp_limb_t) v);
68
69  if (w != NULL)
70    {
71      PTR(w)[0] = res;
72      SIZ(w) = res != 0;
73    }
74  return res;
75}
Note: See TracBrowser for help on using the repository browser.