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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_tdiv_r_2exp -- Divide a integer by 2**CNT and produce a remainder.
  2. Copyright 1991, 1993, 1994, 1995, 2001, 2002 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. void
  17. mpz_tdiv_r_2exp (mpz_ptr res, mpz_srcptr in, mp_bitcnt_t cnt)
  18. {
  19.   mp_size_t in_size = ABS (in->_mp_size);
  20.   mp_size_t res_size;
  21.   mp_size_t limb_cnt = cnt / GMP_NUMB_BITS;
  22.   mp_srcptr in_ptr = in->_mp_d;
  23.   if (in_size > limb_cnt)
  24.     {
  25.       /* The input operand is (probably) greater than 2**CNT.  */
  26.       mp_limb_t x;
  27.       x = in_ptr[limb_cnt] & (((mp_limb_t) 1 << cnt % GMP_NUMB_BITS) - 1);
  28.       if (x != 0)
  29. {
  30.   res_size = limb_cnt + 1;
  31.   if (res->_mp_alloc < res_size)
  32.     _mpz_realloc (res, res_size);
  33.   res->_mp_d[limb_cnt] = x;
  34. }
  35.       else
  36. {
  37.   res_size = limb_cnt;
  38.   MPN_NORMALIZE (in_ptr, res_size);
  39.   if (res->_mp_alloc < res_size)
  40.     _mpz_realloc (res, res_size);
  41.   limb_cnt = res_size;
  42. }
  43.     }
  44.   else
  45.     {
  46.       /* The input operand is smaller than 2**CNT.  We perform a no-op,
  47.  apart from that we might need to copy IN to RES.  */
  48.       res_size = in_size;
  49.       if (res->_mp_alloc < res_size)
  50. _mpz_realloc (res, res_size);
  51.       limb_cnt = res_size;
  52.     }
  53.   if (res != in)
  54.     MPN_COPY (res->_mp_d, in->_mp_d, limb_cnt);
  55.   res->_mp_size = in->_mp_size >= 0 ? res_size : -res_size;
  56. }