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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_preinv_mod_1 (up, un, d, dinv) -- Divide (UP,,UN) by the normalized D.
  2.    DINV should be 2^(2*GMP_LIMB_BITS) / D - 2^GMP_LIMB_BITS.
  3.    Return the single-limb remainder.
  4. Copyright 1991, 1993, 1994, 2000, 2001, 2002, 2004, 2005 Free Software
  5. 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 it
  8. under the terms of the GNU Lesser General Public License as published by the
  9. 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 or
  13. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
  14. for more details.
  15. You should have received a copy of the GNU Lesser General Public License along
  16. 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. /* This function used to be documented, but is now considered obsolete.  It
  21.    continues to exist for binary compatibility, even when not required
  22.    internally.  */
  23. mp_limb_t
  24. mpn_preinv_mod_1 (mp_srcptr up, mp_size_t un, mp_limb_t d, mp_limb_t dinv)
  25. {
  26.   mp_size_t i;
  27.   mp_limb_t n0, r;
  28.   mp_limb_t dummy;
  29.   ASSERT (un >= 1);
  30.   ASSERT (d & GMP_LIMB_HIGHBIT);
  31.   r = up[un - 1];
  32.   if (r >= d)
  33.     r -= d;
  34.   for (i = un - 2; i >= 0; i--)
  35.     {
  36.       n0 = up[i];
  37.       udiv_qrnnd_preinv (dummy, r, r, n0, d, dinv);
  38.     }
  39.   return r;
  40. }