github.com/aergoio/aergo@v1.3.1/libtool/src/gmp-6.1.2/mpz/lcm_ui.c (about) 1 /* mpz_lcm_ui -- least common multiple of mpz and ulong. 2 3 Copyright 2001, 2002, 2004 Free Software Foundation, Inc. 4 5 This file is part of the GNU MP Library. 6 7 The GNU MP Library is free software; you can redistribute it and/or modify 8 it under the terms of either: 9 10 * the GNU Lesser General Public License as published by the Free 11 Software Foundation; either version 3 of the License, or (at your 12 option) any later version. 13 14 or 15 16 * the GNU General Public License as published by the Free Software 17 Foundation; either version 2 of the License, or (at your option) any 18 later version. 19 20 or both in parallel, as here. 21 22 The GNU MP Library is distributed in the hope that it will be useful, but 23 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 24 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 25 for more details. 26 27 You should have received copies of the GNU General Public License and the 28 GNU Lesser General Public License along with the GNU MP Library. If not, 29 see https://www.gnu.org/licenses/. */ 30 31 #include "gmp.h" 32 #include "gmp-impl.h" 33 #include "longlong.h" 34 35 36 void 37 mpz_lcm_ui (mpz_ptr r, mpz_srcptr u, unsigned long v) 38 { 39 mp_size_t usize; 40 mp_srcptr up; 41 mp_ptr rp; 42 unsigned long g; 43 mp_limb_t c; 44 45 #if BITS_PER_ULONG > GMP_NUMB_BITS /* avoid warnings about shift amount */ 46 if (v > GMP_NUMB_MAX) 47 { 48 mpz_t vz; 49 mp_limb_t vlimbs[2]; 50 vlimbs[0] = v & GMP_NUMB_MASK; 51 vlimbs[1] = v >> GMP_NUMB_BITS; 52 PTR(vz) = vlimbs; 53 SIZ(vz) = 2; 54 mpz_lcm (r, u, vz); 55 return; 56 } 57 #endif 58 59 /* result zero if either operand zero */ 60 usize = SIZ(u); 61 if (usize == 0 || v == 0) 62 { 63 SIZ(r) = 0; 64 return; 65 } 66 usize = ABS(usize); 67 68 MPZ_REALLOC (r, usize+1); 69 70 up = PTR(u); 71 g = (unsigned long) mpn_gcd_1 (up, usize, (mp_limb_t) v); 72 v /= g; 73 74 rp = PTR(r); 75 c = mpn_mul_1 (rp, up, usize, (mp_limb_t) v); 76 rp[usize] = c; 77 usize += (c != 0); 78 SIZ(r) = usize; 79 }