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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_sizeinbase -- approximation to chars required for an mpn.
  2.    THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
  3.    CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
  4.    FUTURE GNU MP RELEASES.
  5. Copyright 1991, 1993, 1994, 1995, 2001, 2002 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #include "longlong.h"
  20. /* Same as mpz_sizeinbase, meaning exact for power-of-2 bases, and either
  21.    exact or 1 too big for other bases.  */
  22. size_t
  23. mpn_sizeinbase (mp_srcptr xp, mp_size_t xsize, int base)
  24. {
  25.   int lb_base, cnt;
  26.   mp_size_t totbits;
  27.   ASSERT (xsize >= 0);
  28.   ASSERT (base >= 2);
  29.   ASSERT (base < numberof (mp_bases));
  30.   /* Special case for X == 0.  */
  31.   if (xsize == 0)
  32.     return 1;
  33.   /* Calculate the total number of significant bits of X.  */
  34.   count_leading_zeros (cnt, xp[xsize-1]);
  35.   totbits = xsize * GMP_LIMB_BITS - cnt;
  36.   if (POW2_P (base))
  37.     {
  38.       /* Special case for powers of 2, giving exact result.  */
  39.       lb_base = mp_bases[base].big_base;
  40.       return (totbits + lb_base - 1) / lb_base;
  41.     }
  42.   else
  43.     return (size_t) (totbits * mp_bases[base].chars_per_bit_exactly) + 1;
  44. }