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

数学计算

开发平台:

Unix_Linux

  1. /* THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE.  IT IS NOT SAFE TO
  2.    CALL THIS FUNCTION DIRECTLY.  IN FACT, IT IS ALMOST GUARANTEED THAT THIS
  3.    FUNCTION WILL CHANGE OR DISAPPEAR IN A FUTURE GNU MP RELEASE.
  4. Copyright 1996, 2000, 2001, 2002, 2005 Free Software 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 <stdio.h>
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #if GMP_NUMB_BITS % 4 == 0
  20. void
  21. mpn_dump (mp_srcptr ptr, mp_size_t n)
  22. {
  23.   MPN_NORMALIZE (ptr, n);
  24.   if (n == 0)
  25.     printf ("0n");
  26.   else
  27.     {
  28.       n--;
  29. #if _LONG_LONG_LIMB
  30.       if ((ptr[n] >> GMP_LIMB_BITS / 2) != 0)
  31. {
  32.   printf ("%lX", (unsigned long) (ptr[n] >> GMP_LIMB_BITS / 2));
  33.   printf ("%0*lX", (GMP_LIMB_BITS / 2 / 4), (unsigned long) ptr[n]);
  34. }
  35.       else
  36. #endif
  37. printf ("%lX", (unsigned long) ptr[n]);
  38.       while (n)
  39. {
  40.   n--;
  41. #if _LONG_LONG_LIMB
  42.   printf ("%0*lX", (GMP_NUMB_BITS - GMP_LIMB_BITS / 2) / 4,
  43.   (unsigned long) (ptr[n] >> GMP_LIMB_BITS / 2));
  44.   printf ("%0*lX", GMP_LIMB_BITS / 2 / 4, (unsigned long) ptr[n]);
  45. #else
  46.   printf ("%0*lX", GMP_NUMB_BITS / 4, (unsigned long) ptr[n]);
  47. #endif
  48. }
  49.       printf ("n");
  50.     }
  51. }
  52. #else
  53. static void
  54. mpn_recdump (mp_ptr p, mp_size_t n)
  55. {
  56.   mp_limb_t lo;
  57.   if (n != 0)
  58.     {
  59.       lo = p[0] & 0xf;
  60.       mpn_rshift (p, p, n, 4);
  61.       mpn_recdump (p, n);
  62.       printf ("%lX", lo);
  63.     }
  64. }
  65. void
  66. mpn_dump (mp_srcptr p, mp_size_t n)
  67. {
  68.   mp_ptr tp;
  69.   TMP_DECL;
  70.   TMP_MARK;
  71.   tp = TMP_ALLOC_LIMBS (n);
  72.   MPN_COPY (tp, p, n);
  73.   TMP_FREE;
  74. }
  75. #endif