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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_tdiv_r_ui(rem, dividend, divisor_limb)
  2.    -- Set REM to DIVDEND mod DIVISOR_LIMB.
  3. Copyright 1991, 1993, 1994, 1996, 1998, 2001, 2002, 2004, 2005 Free Software
  4. Foundation, Inc.
  5. This file is part of the GNU MP Library.
  6. The GNU MP Library is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU Lesser General Public License as published by
  8. the Free Software Foundation; either version 3 of the License, or (at your
  9. option) any later version.
  10. The GNU MP Library is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  12. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  13. License for more details.
  14. You should have received a copy of the GNU Lesser General Public License
  15. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. unsigned long int
  19. mpz_tdiv_r_ui (mpz_ptr rem, mpz_srcptr dividend, unsigned long int divisor)
  20. {
  21.   mp_size_t ns, nn;
  22.   mp_ptr np;
  23.   mp_limb_t rl;
  24.   if (divisor == 0)
  25.     DIVIDE_BY_ZERO;
  26.   ns = SIZ(dividend);
  27.   if (ns == 0)
  28.     {
  29.       SIZ(rem) = 0;
  30.       return 0;
  31.     }
  32.   nn = ABS(ns);
  33.   np = PTR(dividend);
  34. #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
  35.   if (divisor > GMP_NUMB_MAX)
  36.     {
  37.       mp_limb_t dp[2];
  38.       mp_ptr rp, qp;
  39.       mp_size_t rn;
  40.       TMP_DECL;
  41.       if (nn == 1) /* tdiv_qr requirements; tested above for 0 */
  42. {
  43.   rl = np[0];
  44.   SIZ(rem) = ns >= 0 ? 1 : -1;
  45.   PTR(rem)[0] = rl;
  46.   return rl;
  47. }
  48.       MPZ_REALLOC (rem, 2);
  49.       rp = PTR(rem);
  50.       TMP_MARK;
  51.       dp[0] = divisor & GMP_NUMB_MASK;
  52.       dp[1] = divisor >> GMP_NUMB_BITS;
  53.       qp = TMP_ALLOC_LIMBS (nn - 2 + 1);
  54.       mpn_tdiv_qr (qp, rp, (mp_size_t) 0, np, nn, dp, (mp_size_t) 2);
  55.       TMP_FREE;
  56.       rl = rp[0] + (rp[1] << GMP_NUMB_BITS);
  57.       rn = 2 - (rp[1] == 0);  rn -= (rp[rn - 1] == 0);
  58.       SIZ(rem) = ns >= 0 ? rn : -rn;
  59.     }
  60.   else
  61. #endif
  62.     {
  63.       rl = mpn_mod_1 (np, nn, (mp_limb_t) divisor);
  64.       if (rl == 0)
  65. SIZ(rem) = 0;
  66.       else
  67. {
  68.   /* Store the single-limb remainder.  We don't check if there's space
  69.      for just one limb, since no function ever makes zero space.  */
  70.   SIZ(rem) = ns >= 0 ? 1 : -1;
  71.   PTR(rem)[0] = rl;
  72. }
  73.     }
  74.   return rl;
  75. }