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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_add_ui -- Add a float and an unsigned integer.
  2. Copyright 1993, 1994, 1996, 2000, 2001 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include "gmp.h"
  15. #include "gmp-impl.h"
  16. void
  17. mpf_add_ui (mpf_ptr sum, mpf_srcptr u, unsigned long int v)
  18. {
  19.   mp_srcptr up = u->_mp_d;
  20.   mp_ptr sump = sum->_mp_d;
  21.   mp_size_t usize, sumsize;
  22.   mp_size_t prec = sum->_mp_prec;
  23.   mp_exp_t uexp = u->_mp_exp;
  24.   usize = u->_mp_size;
  25.   if (usize <= 0)
  26.     {
  27.       if (usize == 0)
  28. {
  29.   mpf_set_ui (sum, v);
  30.   return;
  31. }
  32.       else
  33. {
  34.   __mpf_struct u_negated;
  35.   u_negated._mp_size = -usize;
  36.   u_negated._mp_exp = u->_mp_exp;
  37.   u_negated._mp_d = u->_mp_d;
  38.   mpf_sub_ui (sum, &u_negated, v);
  39.   sum->_mp_size = -(sum->_mp_size);
  40.   return;
  41. }
  42.     }
  43.   if (v == 0)
  44.     {
  45.     sum_is_u:
  46.       if (u != sum)
  47. {
  48.   sumsize = MIN (usize, prec + 1);
  49.   MPN_COPY (sum->_mp_d, up + usize - sumsize, sumsize);
  50.   sum->_mp_size = sumsize;
  51.   sum->_mp_exp = u->_mp_exp;
  52. }
  53.       return;
  54.     }
  55.   if (uexp > 0)
  56.     {
  57.       /* U >= 1.  */
  58.       if (uexp > prec)
  59. {
  60.   /* U >> V, V is not part of final result.  */
  61.   goto sum_is_u;
  62. }
  63.       else
  64. {
  65.   /* U's "limb point" is somewhere between the first limb
  66.      and the PREC:th limb.
  67.      Both U and V are part of the final result.  */
  68.   if (uexp > usize)
  69.     {
  70.       /*   uuuuuu0000. */
  71.       /* +          v. */
  72.       /* We begin with moving U to the top of SUM, to handle
  73.  samevar(U,SUM).  */
  74.       MPN_COPY_DECR (sump + uexp - usize, up, usize);
  75.       sump[0] = v;
  76.       MPN_ZERO (sump + 1, uexp - usize - 1);
  77. #if 0 /* What is this??? */
  78.       if (sum == u)
  79. MPN_COPY (sum->_mp_d, sump, uexp);
  80. #endif
  81.       sum->_mp_size = uexp;
  82.       sum->_mp_exp = uexp;
  83.     }
  84.   else
  85.     {
  86.       /*   uuuuuu.uuuu */
  87.       /* +      v.     */
  88.       mp_limb_t cy_limb;
  89.       if (usize > prec)
  90. {
  91.   /* Ignore excess limbs in U.  */
  92.   up += usize - prec;
  93.   usize -= usize - prec; /* Eq. usize = prec */
  94. }
  95.       if (sump != up)
  96. MPN_COPY_INCR (sump, up, usize - uexp);
  97.       cy_limb = mpn_add_1 (sump + usize - uexp, up + usize - uexp,
  98.    uexp, (mp_limb_t) v);
  99.       sump[usize] = cy_limb;
  100.       sum->_mp_size = usize + cy_limb;
  101.       sum->_mp_exp = uexp + cy_limb;
  102.     }
  103. }
  104.     }
  105.   else
  106.     {
  107.       /* U < 1, so V > U for sure.  */
  108.       /* v.         */
  109.       /*  .0000uuuu */
  110.       if ((-uexp) >= prec)
  111. {
  112.   sump[0] = v;
  113.   sum->_mp_size = 1;
  114.   sum->_mp_exp = 1;
  115. }
  116.       else
  117. {
  118.   if (usize + (-uexp) + 1 > prec)
  119.     {
  120.       /* Ignore excess limbs in U.  */
  121.       up += usize + (-uexp) + 1 - prec;
  122.       usize -= usize + (-uexp) + 1 - prec;
  123.     }
  124.   if (sump != up)
  125.     MPN_COPY_INCR (sump, up, usize);
  126.   MPN_ZERO (sump + usize, -uexp);
  127.   sump[usize + (-uexp)] = v;
  128.   sum->_mp_size = usize + (-uexp) + 1;
  129.   sum->_mp_exp = 1;
  130. }
  131.     }
  132. }