iwmfw - Add version 22 firmwares for AC3168 and AC8265 chipsets.
[dragonfly.git] / contrib / gmp / mpz / lcm.c
blob22ac04177336512c2fcf451bd91307cc04f98bd2
1 /* mpz_lcm -- mpz/mpz least common multiple.
3 Copyright 1996, 2000, 2001, 2005 Free Software Foundation, Inc.
5 This file is part of the GNU MP Library.
7 The GNU MP Library is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or (at your
10 option) any later version.
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
20 #include "gmp.h"
21 #include "gmp-impl.h"
22 #include "longlong.h"
25 void
26 mpz_lcm (mpz_ptr r, mpz_srcptr u, mpz_srcptr v)
28 mpz_t g;
29 mp_size_t usize, vsize, size;
30 TMP_DECL;
32 usize = SIZ (u);
33 vsize = SIZ (v);
34 if (usize == 0 || vsize == 0)
36 SIZ (r) = 0;
37 return;
39 usize = ABS (usize);
40 vsize = ABS (vsize);
42 if (vsize == 1)
44 mp_limb_t vl, gl, c;
45 mp_srcptr up;
46 mp_ptr rp;
48 one:
49 MPZ_REALLOC (r, usize+1);
51 up = PTR(u);
52 vl = PTR(v)[0];
53 gl = mpn_gcd_1 (up, usize, vl);
54 vl /= gl;
56 rp = PTR(r);
57 c = mpn_mul_1 (rp, up, usize, vl);
58 rp[usize] = c;
59 usize += (c != 0);
60 SIZ(r) = usize;
61 return;
64 if (usize == 1)
66 usize = vsize;
67 MPZ_SRCPTR_SWAP (u, v);
68 goto one;
71 TMP_MARK;
72 size = MAX (usize, vsize);
73 MPZ_TMP_INIT (g, size);
75 mpz_gcd (g, u, v);
76 mpz_divexact (g, u, g);
77 mpz_mul (r, g, v);
79 SIZ (r) = ABS (SIZ (r)); /* result always positive */
81 TMP_FREE;