From 11da511c784eca003deb90c23570f0873954e0de Mon Sep 17 00:00:00 2001 From: Duncan Wilkie Date: Sat, 18 Nov 2023 06:11:09 -0600 Subject: Initial commit. --- gmp-6.3.0/mpz/cong_ui.c | 115 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 gmp-6.3.0/mpz/cong_ui.c (limited to 'gmp-6.3.0/mpz/cong_ui.c') diff --git a/gmp-6.3.0/mpz/cong_ui.c b/gmp-6.3.0/mpz/cong_ui.c new file mode 100644 index 0000000..6f86c23 --- /dev/null +++ b/gmp-6.3.0/mpz/cong_ui.c @@ -0,0 +1,115 @@ +/* mpz_congruent_ui_p -- test congruence of mpz and ulong. + +Copyright 2000-2002, 2012 Free Software Foundation, Inc. + +This file is part of the GNU MP Library. + +The GNU MP Library is free software; you can redistribute it and/or modify +it under the terms of either: + + * the GNU Lesser General Public License as published by the Free + Software Foundation; either version 3 of the License, or (at your + option) any later version. + +or + + * the GNU General Public License as published by the Free Software + Foundation; either version 2 of the License, or (at your option) any + later version. + +or both in parallel, as here. + +The GNU MP Library is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received copies of the GNU General Public License and the +GNU Lesser General Public License along with the GNU MP Library. If not, +see https://www.gnu.org/licenses/. */ + +#include "gmp-impl.h" +#include "longlong.h" + + +/* There's some explicit checks for c GMP_NUMB_MAX || cu > GMP_NUMB_MAX) + { + mp_limb_t climbs[2], dlimbs[2]; + mpz_t cz, dz; + + ALLOC(cz) = 2; + PTR(cz) = climbs; + ALLOC(dz) = 2; + PTR(dz) = dlimbs; + + mpz_set_ui (cz, cu); + mpz_set_ui (dz, du); + return mpz_congruent_p (a, cz, dz); + } + + /* NEG_MOD works on limbs, so convert ulong to limb */ + c = cu; + d = du; + + if (asize < 0) + { + asize = -asize; + NEG_MOD (c, c, d); + } + + ap = PTR (a); + + if (ABOVE_THRESHOLD (asize, BMOD_1_TO_MOD_1_THRESHOLD)) + { + r = mpn_mod_1 (ap, asize, d); + if (c < d) + return r == c; + else + return r == (c % d); + } + + if ((d & 1) == 0) + { + /* Strip low zero bits to get odd d required by modexact. If + d==e*2^n then a==c mod d if and only if both a==c mod 2^n + and a==c mod e. */ + + unsigned twos; + + if ((ap[0]-c) & LOW_ZEROS_MASK (d)) + return 0; + + count_trailing_zeros (twos, d); + d >>= twos; + } + + r = mpn_modexact_1c_odd (ap, asize, d, c); + return r == 0 || r == d; +} -- cgit v1.2.3