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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_cdiv_q_2exp, mpz_fdiv_q_2exp -- quotient from mpz divided by 2^n.
  2. Copyright 1991, 1993, 1994, 1996, 1998, 1999, 2001, 2002, 2004 Free Software
  3. 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. /* dir==1 for ceil, dir==-1 for floor */
  18. static void __gmpz_cfdiv_q_2exp __GMP_PROTO ((REGPARM_3_1 (mpz_ptr, mpz_srcptr, mp_bitcnt_t, int))) REGPARM_ATTR (1);
  19. #define cfdiv_q_2exp(w,u,cnt,dir)  __gmpz_cfdiv_q_2exp (REGPARM_3_1 (w,u,cnt,dir))
  20. REGPARM_ATTR (1) static void
  21. cfdiv_q_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt, int dir)
  22. {
  23.   mp_size_t  wsize, usize, abs_usize, limb_cnt, i;
  24.   mp_srcptr  up;
  25.   mp_ptr     wp;
  26.   mp_limb_t  round, rmask;
  27.   usize = SIZ (u);
  28.   abs_usize = ABS (usize);
  29.   limb_cnt = cnt / GMP_NUMB_BITS;
  30.   wsize = abs_usize - limb_cnt;
  31.   if (wsize <= 0)
  32.     {
  33.       /* u < 2**cnt, so result 1, 0 or -1 according to rounding */
  34.       PTR(w)[0] = 1;
  35.       SIZ(w) = (usize == 0 || (usize ^ dir) < 0 ? 0 : dir);
  36.       return;
  37.     }
  38.   /* +1 limb to allow for mpn_add_1 below */
  39.   MPZ_REALLOC (w, wsize+1);
  40.   /* Check for rounding if direction matches u sign.
  41.      Set round if we're skipping non-zero limbs.  */
  42.   up = PTR(u);
  43.   round = 0;
  44.   rmask = ((usize ^ dir) >= 0 ? MP_LIMB_T_MAX : 0);
  45.   if (rmask != 0)
  46.     for (i = 0; i < limb_cnt && round == 0; i++)
  47.       round = up[i];
  48.   wp = PTR(w);
  49.   cnt %= GMP_NUMB_BITS;
  50.   if (cnt != 0)
  51.     {
  52.       round |= rmask & mpn_rshift (wp, up + limb_cnt, wsize, cnt);
  53.       wsize -= (wp[wsize - 1] == 0);
  54.     }
  55.   else
  56.     MPN_COPY_INCR (wp, up + limb_cnt, wsize);
  57.   if (round != 0)
  58.     {
  59.       if (wsize != 0)
  60. {
  61.           mp_limb_t cy;
  62.   cy = mpn_add_1 (wp, wp, wsize, CNST_LIMB(1));
  63.   wp[wsize] = cy;
  64.   wsize += cy;
  65. }
  66.       else
  67. {
  68.   /* We shifted something to zero.  */
  69.   wp[0] = 1;
  70.   wsize = 1;
  71. }
  72.     }
  73.   SIZ(w) = (usize >= 0 ? wsize : -wsize);
  74. }
  75. void
  76. mpz_cdiv_q_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt)
  77. {
  78.   cfdiv_q_2exp (w, u, cnt, 1);
  79. }
  80. void
  81. mpz_fdiv_q_2exp (mpz_ptr w, mpz_srcptr u, mp_bitcnt_t cnt)
  82. {
  83.   cfdiv_q_2exp (w, u, cnt, -1);
  84. }