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

数学计算

开发平台:

Unix_Linux

  1. /* mpn_mullo_basecase -- Internal routine to multiply two natural
  2.    numbers of length m and n and return the low part.
  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) 2000, 2002, 2004 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.   FIXME: Should use mpn_addmul_2 (and higher).
  21. */
  22. void
  23. mpn_mullo_basecase (mp_ptr rp, mp_srcptr up, mp_srcptr vp, mp_size_t n)
  24. {
  25.   mp_size_t i;
  26.   mpn_mul_1 (rp, up, n, vp[0]);
  27.   for (i = 1; i < n; i++)
  28.     mpn_addmul_1 (rp + i, up, n - i, vp[i]);
  29. }