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

数学计算

开发平台:

Unix_Linux

  1. /* mpf_get_si -- mpf to long conversion
  2. Copyright 2001, 2002, 2004 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. /* Any fraction bits are truncated, meaning simply discarded.
  17.    For values bigger than a long, the low bits are returned, like
  18.    mpz_get_si, but this isn't documented.
  19.    Notice this is equivalent to mpz_set_f + mpz_get_si.
  20.    Implementation:
  21.    fl is established in basically the same way as for mpf_get_ui, see that
  22.    code for explanations of the conditions.
  23.    However unlike mpf_get_ui we need an explicit return 0 for exp<=0.  When
  24.    f is a negative fraction (ie. size<0 and exp<=0) we can't let fl==0 go
  25.    through to the zany final "~ ((fl - 1) & LONG_MAX)", that would give
  26.    -0x80000000 instead of the desired 0.  */
  27. long
  28. mpf_get_si (mpf_srcptr f)
  29. {
  30.   mp_exp_t exp;
  31.   mp_size_t size, abs_size;
  32.   mp_srcptr fp;
  33.   mp_limb_t fl;
  34.   exp = EXP (f);
  35.   size = SIZ (f);
  36.   fp = PTR (f);
  37.   /* fraction alone truncates to zero
  38.      this also covers zero, since we have exp==0 for zero */
  39.   if (exp <= 0)
  40.     return 0L;
  41.   /* there are some limbs above the radix point */
  42.   fl = 0;
  43.   abs_size = ABS (size);
  44.   if (abs_size >= exp)
  45.     fl = fp[abs_size-exp];
  46. #if BITS_PER_ULONG > GMP_NUMB_BITS
  47.   if (exp > 1 && abs_size+1 >= exp)
  48.     fl |= fp[abs_size - exp + 1] << GMP_NUMB_BITS;
  49. #endif
  50.   if (size > 0)
  51.     return fl & LONG_MAX;
  52.   else
  53.     /* this form necessary to correctly handle -0x80..00 */
  54.     return ~ ((fl - 1) & LONG_MAX);
  55. }