1 | /* mpz_gcd_ui -- Calculate the greatest common divisior of two integers. |
---|
2 | |
---|
3 | Copyright 1994, 1996, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, |
---|
4 | Inc. |
---|
5 | |
---|
6 | This file is part of the GNU MP Library. |
---|
7 | |
---|
8 | The GNU MP Library is free software; you can redistribute it and/or modify |
---|
9 | it under the terms of the GNU Lesser General Public License as published by |
---|
10 | the Free Software Foundation; either version 2.1 of the License, or (at your |
---|
11 | option) any later version. |
---|
12 | |
---|
13 | The GNU MP Library is distributed in the hope that it will be useful, but |
---|
14 | WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY |
---|
15 | or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public |
---|
16 | License for more details. |
---|
17 | |
---|
18 | You should have received a copy of the GNU Lesser General Public License |
---|
19 | along with the GNU MP Library; see the file COPYING.LIB. If not, write to |
---|
20 | the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, |
---|
21 | MA 02111-1307, USA. */ |
---|
22 | |
---|
23 | #include <stdio.h> /* for NULL */ |
---|
24 | #include "gmp.h" |
---|
25 | #include "gmp-impl.h" |
---|
26 | |
---|
27 | unsigned long int |
---|
28 | mpz_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 | } |
---|