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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_dc_div_q -- divide-and-conquer division, returning exact quotient
  2.    only.
  3.    Contributed to the GNU project by Torbjorn Granlund and Marco Bodrato.
  4.    THE FUNCTION IN THIS FILE IS INTERNAL WITH A MUTABLE INTERFACE.  IT IS ONLY
  5.    SAFE TO REACH IT THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  6.    GUARANTEED THAT IT WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  7. Copyright 2006, 2007, 2009, 2010 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. mp_limb_t
  22. mpn_dcpi1_div_q (mp_ptr qp, mp_ptr np, mp_size_t nn,
  23.  mp_srcptr dp, mp_size_t dn, gmp_pi1_t *dinv)
  24. {
  25.   mp_ptr tp, wp;
  26.   mp_limb_t qh;
  27.   mp_size_t qn;
  28.   TMP_DECL;
  29.   TMP_MARK;
  30.   ASSERT (dn >= 6);
  31.   ASSERT (nn - dn >= 3);
  32.   ASSERT (dp[dn-1] & GMP_NUMB_HIGHBIT);
  33.   tp = TMP_SALLOC_LIMBS (nn + 1);
  34.   MPN_COPY (tp + 1, np, nn);
  35.   tp[0] = 0;
  36.   qn = nn - dn;
  37.   wp = TMP_SALLOC_LIMBS (qn + 1);
  38.   qh = mpn_dcpi1_divappr_q (wp, tp, nn + 1, dp, dn, dinv);
  39.   if (wp[0] == 0)
  40.     {
  41.       mp_limb_t cy;
  42.       if (qn > dn)
  43. mpn_mul (tp, wp + 1, qn, dp, dn);
  44.       else
  45. mpn_mul (tp, dp, dn, wp + 1, qn);
  46.       cy = (qh != 0) ? mpn_add_n (tp + qn, tp + qn, dp, dn) : 0;
  47.       if (cy || mpn_cmp (tp, np, nn) > 0) /* At most is wrong by one, no cycle. */
  48. qh -= mpn_sub_1 (qp, wp + 1, qn, 1);
  49.       else /* Same as below */
  50. MPN_COPY (qp, wp + 1, qn);
  51.     }
  52.   else
  53.     MPN_COPY (qp, wp + 1, qn);
  54.   TMP_FREE;
  55.   return qh;
  56. }