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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_tdiv_q -- divide two integers and produce a quotient.
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2005, 2010 Free Software Foundation,
  3. Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "longlong.h"
  18. void
  19. mpz_tdiv_q (mpz_ptr quot, mpz_srcptr num, mpz_srcptr den)
  20. {
  21.   mp_size_t ql;
  22.   mp_size_t ns, ds, nl, dl;
  23.   mp_ptr np, dp, qp;
  24.   TMP_DECL;
  25.   ns = SIZ (num);
  26.   ds = SIZ (den);
  27.   nl = ABS (ns);
  28.   dl = ABS (ds);
  29.   ql = nl - dl + 1;
  30.   if (dl == 0)
  31.     DIVIDE_BY_ZERO;
  32.   if (ql <= 0)
  33.     {
  34.       SIZ (quot) = 0;
  35.       return;
  36.     }
  37.   MPZ_REALLOC (quot, ql);
  38.   TMP_MARK;
  39.   qp = PTR (quot);
  40.   np = PTR (num);
  41.   dp = PTR (den);
  42.   /* Copy denominator to temporary space if it overlaps with the quotient.  */
  43.   if (dp == qp)
  44.     {
  45.       mp_ptr tp;
  46.       tp = TMP_ALLOC_LIMBS (dl);
  47.       MPN_COPY (tp, dp, dl);
  48.       dp = tp;
  49.     }
  50.   /* Copy numerator to temporary space if it overlaps with the quotient.  */
  51.   if (np == qp)
  52.     {
  53.       mp_ptr tp;
  54.       tp = TMP_ALLOC_LIMBS (nl + 1);
  55.       MPN_COPY (tp, np, nl);
  56.       /* Overlap dividend and scratch.  */
  57.       mpn_div_q (qp, tp, nl, dp, dl, tp);
  58.     }
  59.   else
  60.     {
  61.       mp_ptr tp;
  62.       tp = TMP_ALLOC_LIMBS (nl + 1);
  63.       mpn_div_q (qp, np, nl, dp, dl, tp);
  64.     }
  65.   ql -=  qp[ql - 1] == 0;
  66.   SIZ (quot) = (ns ^ ds) >= 0 ? ql : -ql;
  67.   TMP_FREE;
  68. }