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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_cdiv_r_ui -- Division rounding the quotient towards +infinity.  The
  2.    remainder gets the opposite sign as the denominator.  In order to make it
  3.    always fit into the return type, the negative of the true remainder is
  4.    returned.
  5. Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005 Free Software Foundation,
  6. 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. unsigned long int
  21. mpz_cdiv_r_ui (mpz_ptr rem, mpz_srcptr dividend, unsigned long int divisor)
  22. {
  23.   mp_size_t ns, nn;
  24.   mp_ptr np;
  25.   mp_limb_t rl;
  26.   if (divisor == 0)
  27.     DIVIDE_BY_ZERO;
  28.   ns = SIZ(dividend);
  29.   if (ns == 0)
  30.     {
  31.       SIZ(rem) = 0;
  32.       return 0;
  33.     }
  34.   nn = ABS(ns);
  35.   np = PTR(dividend);
  36. #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
  37.   if (divisor > GMP_NUMB_MAX)
  38.     {
  39.       mp_limb_t dp[2];
  40.       mp_ptr rp, qp;
  41.       mp_size_t rn;
  42.       TMP_DECL;
  43.       MPZ_REALLOC (rem, 2);
  44.       rp = PTR(rem);
  45.       if (nn == 1) /* tdiv_qr requirements; tested above for 0 */
  46. {
  47.   rl = np[0];
  48.   rp[0] = rl;
  49. }
  50.       else
  51. {
  52.   TMP_MARK;
  53.   dp[0] = divisor & GMP_NUMB_MASK;
  54.   dp[1] = divisor >> GMP_NUMB_BITS;
  55.   qp = TMP_ALLOC_LIMBS (nn - 2 + 1);
  56.   mpn_tdiv_qr (qp, rp, (mp_size_t) 0, np, nn, dp, (mp_size_t) 2);
  57.   TMP_FREE;
  58.   rl = rp[0] + (rp[1] << GMP_NUMB_BITS);
  59. }
  60.       if (rl != 0 && ns >= 0)
  61. {
  62.   rl = divisor - rl;
  63.   rp[0] = rl & GMP_NUMB_MASK;
  64.   rp[1] = rl >> GMP_NUMB_BITS;
  65. }
  66.       rn = 1 + (rl > GMP_NUMB_MAX);  rn -= (rp[rn - 1] == 0);
  67.       SIZ(rem) = -rn;
  68.     }
  69.   else
  70. #endif
  71.     {
  72.       rl = mpn_mod_1 (np, nn, (mp_limb_t) divisor);
  73.       if (rl == 0)
  74. SIZ(rem) = 0;
  75.       else
  76. {
  77.   if (ns >= 0)
  78.     rl = divisor - rl;
  79.   PTR(rem)[0] = rl;
  80.   SIZ(rem) = -1;
  81. }
  82.     }
  83.   return rl;
  84. }