github.com/aergoio/aergo@v1.3.1/libtool/src/gmp-6.1.2/mpz/kronzu.c (about) 1 /* mpz_kronecker_ui -- mpz+ulong Kronecker/Jacobi symbol. 2 3 Copyright 1999-2002 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 int 37 mpz_kronecker_ui (mpz_srcptr a, unsigned long b) 38 { 39 mp_srcptr a_ptr; 40 mp_size_t a_size; 41 mp_limb_t a_rem; 42 int result_bit1; 43 44 a_size = SIZ(a); 45 if (a_size == 0) 46 return JACOBI_0U (b); 47 48 if (b > GMP_NUMB_MAX) 49 { 50 mp_limb_t blimbs[2]; 51 mpz_t bz; 52 ALLOC(bz) = numberof (blimbs); 53 PTR(bz) = blimbs; 54 mpz_set_ui (bz, b); 55 return mpz_kronecker (a, bz); 56 } 57 58 a_ptr = PTR(a); 59 if ((b & 1) != 0) 60 { 61 result_bit1 = JACOBI_ASGN_SU_BIT1 (a_size, b); 62 } 63 else 64 { 65 mp_limb_t a_low = a_ptr[0]; 66 int twos; 67 68 if (b == 0) 69 return JACOBI_LS0 (a_low, a_size); /* (a/0) */ 70 71 if (! (a_low & 1)) 72 return 0; /* (even/even)=0 */ 73 74 /* (a/2)=(2/a) for a odd */ 75 count_trailing_zeros (twos, b); 76 b >>= twos; 77 result_bit1 = (JACOBI_TWOS_U_BIT1 (twos, a_low) 78 ^ JACOBI_ASGN_SU_BIT1 (a_size, b)); 79 } 80 81 if (b == 1) 82 return JACOBI_BIT1_TO_PN (result_bit1); /* (a/1)=1 for any a */ 83 84 a_size = ABS(a_size); 85 86 /* (a/b) = (a mod b / b) */ 87 JACOBI_MOD_OR_MODEXACT_1_ODD (result_bit1, a_rem, a_ptr, a_size, b); 88 return mpn_jacobi_base (a_rem, (mp_limb_t) b, result_bit1); 89 }