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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_div_ui -- Divide a float with an unsigned integer.
  2. Copyright 1993, 1994, 1996, 2000, 2001, 2002, 2004, 2005 Free Software
  3. Foundation, 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. mpf_div_ui (mpf_ptr r, mpf_srcptr u, unsigned long int v)
  20. {
  21.   mp_srcptr up;
  22.   mp_ptr rp, tp, rtp;
  23.   mp_size_t usize;
  24.   mp_size_t rsize, tsize;
  25.   mp_size_t sign_quotient;
  26.   mp_size_t prec;
  27.   mp_limb_t q_limb;
  28.   mp_exp_t rexp;
  29.   TMP_DECL;
  30. #if BITS_PER_ULONG > GMP_NUMB_BITS  /* avoid warnings about shift amount */
  31.   if (v > GMP_NUMB_MAX)
  32.     {
  33.       mpf_t vf;
  34.       mp_limb_t vl[2];
  35.       SIZ(vf) = 2;
  36.       EXP(vf) = 2;
  37.       PTR(vf) = vl;
  38.       vl[0] = v & GMP_NUMB_MASK;
  39.       vl[1] = v >> GMP_NUMB_BITS;
  40.       mpf_div (r, u, vf);
  41.       return;
  42.     }
  43. #endif
  44.   usize = u->_mp_size;
  45.   sign_quotient = usize;
  46.   usize = ABS (usize);
  47.   prec = r->_mp_prec;
  48.   if (v == 0)
  49.     DIVIDE_BY_ZERO;
  50.   if (usize == 0)
  51.     {
  52.       r->_mp_size = 0;
  53.       r->_mp_exp = 0;
  54.       return;
  55.     }
  56.   TMP_MARK;
  57.   rp = r->_mp_d;
  58.   up = u->_mp_d;
  59.   tsize = 1 + prec;
  60.   tp = TMP_ALLOC_LIMBS (tsize + 1);
  61.   if (usize > tsize)
  62.     {
  63.       up += usize - tsize;
  64.       usize = tsize;
  65.       rtp = tp;
  66.     }
  67.   else
  68.     {
  69.       MPN_ZERO (tp, tsize - usize);
  70.       rtp = tp + (tsize - usize);
  71.     }
  72.   /* Move the dividend to the remainder.  */
  73.   MPN_COPY (rtp, up, usize);
  74.   mpn_divmod_1 (rp, tp, tsize, (mp_limb_t) v);
  75.   q_limb = rp[tsize - 1];
  76.   rsize = tsize - (q_limb == 0);
  77.   rexp = u->_mp_exp - (q_limb == 0);
  78.   r->_mp_size = sign_quotient >= 0 ? rsize : -rsize;
  79.   r->_mp_exp = rexp;
  80.   TMP_FREE;
  81. }