md_2exp.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:3k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* mpq_mul_2exp, mpq_div_2exp - multiply or divide by 2^N */
  2. /*
  3. Copyright 2000, 2002 Free Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "longlong.h"
  18. /* The multiplier/divisor "n", representing 2^n, is applied by right shifting
  19.    "r" until it's odd (if it isn't already), and left shifting "l" for the
  20.    rest. */
  21. static void
  22. mord_2exp (mpz_ptr ldst, mpz_ptr rdst, mpz_srcptr lsrc, mpz_srcptr rsrc,
  23.            mp_bitcnt_t n)
  24. {
  25.   mp_size_t  rsrc_size = SIZ(rsrc);
  26.   mp_size_t  len = ABS (rsrc_size);
  27.   mp_ptr     rsrc_ptr = PTR(rsrc);
  28.   mp_ptr     p, rdst_ptr;
  29.   mp_limb_t  plow;
  30.   p = rsrc_ptr;
  31.   plow = *p;
  32.   while (n >= GMP_NUMB_BITS && plow == 0)
  33.     {
  34.       n -= GMP_NUMB_BITS;
  35.       p++;
  36.       plow = *p;
  37.     }
  38.   /* no realloc here if rsrc==rdst, so p and rsrc_ptr remain valid */
  39.   len -= (p - rsrc_ptr);
  40.   MPZ_REALLOC (rdst, len);
  41.   rdst_ptr = PTR(rdst);
  42.   if ((plow & 1) || n == 0)
  43.     {
  44.       /* need DECR when src==dst */
  45.       if (p != rdst_ptr)
  46.         MPN_COPY_DECR (rdst_ptr, p, len);
  47.     }
  48.   else
  49.     {
  50.       unsigned long  shift;
  51.       if (plow == 0)
  52.         shift = n;
  53.       else
  54.         {
  55.           count_trailing_zeros (shift, plow);
  56.           shift = MIN (shift, n);
  57.         }
  58.       mpn_rshift (rdst_ptr, p, len, shift);
  59.       len -= (rdst_ptr[len-1] == 0);
  60.       n -= shift;
  61.     }
  62.   SIZ(rdst) = (rsrc_size >= 0) ? len : -len;
  63.   if (n)
  64.     mpz_mul_2exp (ldst, lsrc, n);
  65.   else if (ldst != lsrc)
  66.     mpz_set (ldst, lsrc);
  67. }
  68. void
  69. mpq_mul_2exp (mpq_ptr dst, mpq_srcptr src, mp_bitcnt_t n)
  70. {
  71.   mord_2exp (mpq_numref (dst), mpq_denref (dst),
  72.              mpq_numref (src), mpq_denref (src), n);
  73. }
  74. void
  75. mpq_div_2exp (mpq_ptr dst, mpq_srcptr src, mp_bitcnt_t n)
  76. {
  77.   if (SIZ (mpq_numref(src)) == 0)
  78.     {
  79.       dst->_mp_num._mp_size = 0;
  80.       dst->_mp_den._mp_size = 1;
  81.       dst->_mp_den._mp_d[0] = 1;
  82.       return;
  83.     }
  84.   mord_2exp (mpq_denref (dst), mpq_numref (dst),
  85.              mpq_denref (src), mpq_numref (src), n);
  86. }