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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_divrem -- Divide natural numbers, producing both remainder and
  2.    quotient.  This is now just a middle layer for calling the new
  3.    internal mpn_tdiv_qr.
  4. Copyright 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001, 2002, 2005 Free
  5. Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "longlong.h"
  20. mp_limb_t
  21. mpn_divrem (mp_ptr qp, mp_size_t qxn,
  22.     mp_ptr np, mp_size_t nn,
  23.     mp_srcptr dp, mp_size_t dn)
  24. {
  25.   ASSERT (qxn >= 0);
  26.   ASSERT (nn >= dn);
  27.   ASSERT (dn >= 1);
  28.   ASSERT (dp[dn-1] & GMP_NUMB_HIGHBIT);
  29.   ASSERT (! MPN_OVERLAP_P (np, nn, dp, dn));
  30.   ASSERT (! MPN_OVERLAP_P (qp, nn-dn+qxn, np, nn) || qp==np+dn+qxn);
  31.   ASSERT (! MPN_OVERLAP_P (qp, nn-dn+qxn, dp, dn));
  32.   ASSERT_MPN (np, nn);
  33.   ASSERT_MPN (dp, dn);
  34.   if (dn == 1)
  35.     {
  36.       mp_limb_t ret;
  37.       mp_ptr q2p;
  38.       mp_size_t qn;
  39.       TMP_DECL;
  40.       TMP_MARK;
  41.       q2p = TMP_ALLOC_LIMBS (nn + qxn);
  42.       np[0] = mpn_divrem_1 (q2p, qxn, np, nn, dp[0]);
  43.       qn = nn + qxn - 1;
  44.       MPN_COPY (qp, q2p, qn);
  45.       ret = q2p[qn];
  46.       TMP_FREE;
  47.       return ret;
  48.     }
  49.   else if (dn == 2)
  50.     {
  51.       return mpn_divrem_2 (qp, qxn, np, nn, dp);
  52.     }
  53.   else
  54.     {
  55.       mp_ptr rp, q2p;
  56.       mp_limb_t qhl;
  57.       mp_size_t qn;
  58.       TMP_DECL;
  59.       TMP_MARK;
  60.       if (UNLIKELY (qxn != 0))
  61. {
  62.   mp_ptr n2p;
  63.   n2p = TMP_ALLOC_LIMBS (nn + qxn);
  64.   MPN_ZERO (n2p, qxn);
  65.   MPN_COPY (n2p + qxn, np, nn);
  66.   q2p = TMP_ALLOC_LIMBS (nn - dn + qxn + 1);
  67.   rp = TMP_ALLOC_LIMBS (dn);
  68.   mpn_tdiv_qr (q2p, rp, 0L, n2p, nn + qxn, dp, dn);
  69.   MPN_COPY (np, rp, dn);
  70.   qn = nn - dn + qxn;
  71.   MPN_COPY (qp, q2p, qn);
  72.   qhl = q2p[qn];
  73. }
  74.       else
  75. {
  76.   q2p = TMP_ALLOC_LIMBS (nn - dn + 1);
  77.   rp = TMP_ALLOC_LIMBS (dn);
  78.   mpn_tdiv_qr (q2p, rp, 0L, np, nn, dp, dn);
  79.   MPN_COPY (np, rp, dn); /* overwrite np area with remainder */
  80.   qn = nn - dn;
  81.   MPN_COPY (qp, q2p, qn);
  82.   qhl = q2p[qn];
  83. }
  84.       TMP_FREE;
  85.       return qhl;
  86.     }
  87. }