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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_bdiv_q_1, mpn_pi1_bdiv_q_1 -- schoolbook Hensel division by 1-limb
  2.    divisor, returning quotient only.
  3.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  4.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  5.    FUTURE GNU MP RELEASES.
  6. Copyright 2000, 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
  7. This file is part of the GNU MP Library.
  8. The GNU MP Library is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU Lesser General Public License as published by
  10. the Free Software Foundation; either version 3 of the License, or (at your
  11. option) any later version.
  12. The GNU MP Library is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  14. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  15. License for more details.
  16. You should have received a copy of the GNU Lesser General Public License
  17. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  18. #include "gmp.h"
  19. #include "gmp-impl.h"
  20. #include "longlong.h"
  21. mp_limb_t
  22. mpn_pi1_bdiv_q_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t d,
  23.   mp_limb_t di, int shift)
  24. {
  25.   mp_size_t  i;
  26.   mp_limb_t  c, h, l, u, u_next, dummy;
  27.   ASSERT (n >= 1);
  28.   ASSERT (d != 0);
  29.   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, up, n));
  30.   ASSERT_MPN (up, n);
  31.   ASSERT_LIMB (d);
  32.   d <<= GMP_NAIL_BITS;
  33.   if (shift != 0)
  34.     {
  35.       c = 0;
  36.       u = up[0];
  37.       rp--;
  38.       for (i = 1; i < n; i++)
  39. {
  40.   u_next = up[i];
  41.   u = ((u >> shift) | (u_next << (GMP_NUMB_BITS-shift))) & GMP_NUMB_MASK;
  42.   SUBC_LIMB (c, l, u, c);
  43.   l = (l * di) & GMP_NUMB_MASK;
  44.   rp[i] = l;
  45.   umul_ppmm (h, dummy, l, d);
  46.   c += h;
  47.   u = u_next;
  48. }
  49.       u = u >> shift;
  50.       l = u - c;
  51.       l = (l * di) & GMP_NUMB_MASK;
  52.       rp[i] = l;
  53.     }
  54.   else
  55.     {
  56.       u = up[0];
  57.       l = (u * di) & GMP_NUMB_MASK;
  58.       rp[0] = l;
  59.       c = 0;
  60.       for (i = 1; i < n; i++)
  61. {
  62.   umul_ppmm (h, dummy, l, d);
  63.   c += h;
  64.   u = up[i];
  65.   SUBC_LIMB (c, l, u, c);
  66.   l = (l * di) & GMP_NUMB_MASK;
  67.   rp[i] = l;
  68. }
  69.     }
  70.   return c;
  71. }
  72. mp_limb_t
  73. mpn_bdiv_q_1 (mp_ptr rp, mp_srcptr up, mp_size_t n, mp_limb_t d)
  74. {
  75.   mp_limb_t di;
  76.   int shift;
  77.   ASSERT (n >= 1);
  78.   ASSERT (d != 0);
  79.   ASSERT (MPN_SAME_OR_SEPARATE_P (rp, up, n));
  80.   ASSERT_MPN (up, n);
  81.   ASSERT_LIMB (d);
  82.   if ((d & 1) == 0)
  83.     {
  84.       count_trailing_zeros (shift, d);
  85.       d >>= shift;
  86.     }
  87.   else
  88.     shift = 0;
  89.   binvert_limb (di, d);
  90.   return mpn_pi1_bdiv_q_1 (rp, up, n, d, di, shift);
  91. }