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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_sbpi1_bdiv_qr -- schoolbook Hensel division with precomputed inverse,
  2.    returning quotient and remainder.
  3.    Contributed to the GNU project by Niels M鰈ler.
  4.    THE FUNCTIONS IN THIS FILE ARE INTERNAL FUNCTIONS WITH MUTABLE INTERFACES.
  5.    IT IS ONLY SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS
  6.    ALMOST GUARANTEED THAT THEY'LL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  7. Copyright 2006, 2009 Free Software Foundation, Inc.
  8. This file is part of the GNU MP Library.
  9. The GNU MP Library is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU Lesser General Public License as published by
  11. the Free Software Foundation; either version 3 of the License, or (at your
  12. option) any later version.
  13. The GNU MP Library is distributed in the hope that it will be useful, but
  14. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  19. #include "gmp.h"
  20. #include "gmp-impl.h"
  21. /* Computes a binary quotient of size qn = nn - dn.
  22.    Output:
  23.       Q = N * D^{-1} mod B^qn,
  24.       R = (N - Q * D) * B^(-qn)
  25.    Stores the dn least significant limbs of R at {np + nn - dn, dn},
  26.    and returns the borrow from the subtraction N - Q*D.
  27.    D must be odd. dinv is (-D)^-1 mod B. */
  28. mp_limb_t
  29. mpn_sbpi1_bdiv_qr (mp_ptr qp,
  30.    mp_ptr np, mp_size_t nn,
  31.    mp_srcptr dp, mp_size_t dn, mp_limb_t dinv)
  32. {
  33.   mp_size_t qn;
  34.   mp_size_t i;
  35.   mp_limb_t rh;
  36.   mp_limb_t ql;
  37.   ASSERT (dn > 0);
  38.   ASSERT (nn > dn);
  39.   ASSERT ((dp[0] & 1) != 0);
  40.   qn = nn - dn;
  41.   rh = 0;
  42.   /* To complete the negation, this value is added to q. */
  43.   ql = 1;
  44.   while (qn > dn)
  45.     {
  46.       for (i = 0; i < dn; i++)
  47. {
  48.   mp_limb_t q;
  49.   q = dinv * np[i];
  50.   qp[i] = ~q;
  51.   np[i] = mpn_addmul_1 (np + i, dp, dn, q);
  52. }
  53.       rh += mpn_add (np + dn, np + dn, qn, np, dn);
  54.       ql = mpn_add_1 (qp, qp, dn, ql);
  55.       qp += dn; qn -= dn;
  56.       np += dn; nn -= dn;
  57.     }
  58.   for (i = 0; i < qn; i++)
  59.     {
  60.       mp_limb_t q;
  61.       q = dinv * np[i];
  62.       qp[i] = ~q;
  63.       np[i] = mpn_addmul_1 (np + i, dp, dn, q);
  64.     }
  65.   rh += mpn_add_n (np + dn, np + dn, np, qn);
  66.   ql = mpn_add_1 (qp, qp, qn, ql);
  67.   if (UNLIKELY (ql > 0))
  68.     {
  69.       /* q == 0 */
  70.       ASSERT (rh == 0);
  71.       return 0;
  72.     }
  73.   else
  74.     {
  75.       mp_limb_t cy;
  76.       cy = mpn_sub_n (np + qn, np + qn, dp, dn);
  77.       ASSERT (cy >= rh);
  78.       return cy - rh;
  79.     }
  80. }