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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_bdiv_q -- Hensel division with precomputed inverse, returning quotient.
  2.    Contributed to the GNU project by Torbjorn Granlund.
  3.    THE FUNCTIONS IN THIS FILE ARE INTERNAL WITH MUTABLE INTERFACES.  IT IS ONLY
  4.    SAFE TO REACH THEM THROUGH DOCUMENTED INTERFACES.  IN FACT, IT IS ALMOST
  5.    GUARANTEED THAT THEY WILL CHANGE OR DISAPPEAR IN A FUTURE GMP RELEASE.
  6. Copyright 2006, 2007, 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. /* Computes Q = N / D mod B^n. */
  21. void
  22. mpn_bdiv_q (mp_ptr qp,
  23.     mp_srcptr np, mp_size_t nn,
  24.     mp_srcptr dp, mp_size_t dn,
  25.     mp_ptr tp)
  26. {
  27.   mp_limb_t di;
  28.   if (BELOW_THRESHOLD (dn, DC_BDIV_Q_THRESHOLD))
  29.     {
  30.       MPN_COPY (tp, np, nn);
  31.       binvert_limb (di, dp[0]);  di = -di;
  32.       mpn_sbpi1_bdiv_q (qp, tp, nn, dp, dn, di);
  33.     }
  34.   else if (BELOW_THRESHOLD (dn, MU_BDIV_Q_THRESHOLD))
  35.     {
  36.       MPN_COPY (tp, np, nn);
  37.       binvert_limb (di, dp[0]);  di = -di;
  38.       mpn_dcpi1_bdiv_q (qp, tp, nn, dp, dn, di);
  39.     }
  40.   else
  41.     {
  42.       mpn_mu_bdiv_q (qp, np, nn, dp, dn, tp);
  43.     }
  44.   return;
  45. }
  46. mp_size_t
  47. mpn_bdiv_q_itch (mp_size_t nn, mp_size_t dn)
  48. {
  49.   if (BELOW_THRESHOLD (dn, MU_BDIV_Q_THRESHOLD))
  50.     return nn;
  51.   else
  52.     return mpn_mu_bdiv_q_itch (nn, dn);
  53. }