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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_redc_n.  Set cp[] <- up[]/R^n mod mp[].  Clobber up[].
  2.    mp[] is n limbs; up[] is 2n limbs, the inverse ip[] is n limbs.
  3.    THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE.  IT IS ONLY
  4.    SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.
  5. Copyright (C) 2009 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. /*
  20.   TODO
  21.   * We assume mpn_mulmod_bnm1 is always faster than plain mpn_mul_n (or a
  22.     future mpn_mulhi) for the range we will be called.  Follow up that
  23.     assumption.
  24.   * Decrease scratch usage.
  25. */
  26. void
  27. mpn_redc_n (mp_ptr rp, mp_ptr up, mp_srcptr mp, mp_size_t n, mp_srcptr ip)
  28. {
  29.   mp_ptr xp, yp, scratch;
  30.   mp_limb_t cy;
  31.   mp_size_t rn;
  32.   TMP_DECL;
  33.   TMP_MARK;
  34.   rn = mpn_mulmod_bnm1_next_size (n);
  35.   scratch = TMP_ALLOC_LIMBS (n + rn + mpn_mulmod_bnm1_itch (rn, n, n));
  36.   xp = scratch;
  37.   mpn_mullo_n (xp, up, ip, n);
  38.   yp = scratch + n;
  39.   mpn_mulmod_bnm1 (yp, rn, xp, n, mp, n, scratch + n + rn);
  40.   ASSERT_ALWAYS (2 * n > rn); /* could handle this */
  41.   cy = mpn_sub_n (yp + rn, yp, up, 2*n - rn); /* undo wrap around */
  42.   MPN_DECR_U (yp + 2*n - rn, rn, cy);
  43.   cy = mpn_sub_n (rp, up + n, yp + n, n);
  44.   if (cy != 0)
  45.     mpn_add_n (rp, rp, mp, n);
  46.   TMP_FREE;
  47. }