2009-07-24 13:16:50 -04:00
|
|
|
/* mpn_mullow_n_basecase -- Internal routine to multiply two natural
|
2013-04-05 20:21:39 -04:00
|
|
|
numbers of length n and return the low part.
|
2009-07-24 13:16:50 -04:00
|
|
|
|
|
|
|
THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE. IT IS ONLY
|
|
|
|
SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.
|
|
|
|
|
|
|
|
|
|
|
|
Copyright (C) 2000, 2002, 2004 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
This file is part of the GNU MP Library.
|
|
|
|
|
|
|
|
The GNU MP Library is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
2013-04-05 20:21:39 -04:00
|
|
|
the Free Software Foundation; either version 3 of the License, or (at your
|
2009-07-24 13:16:50 -04:00
|
|
|
option) any later version.
|
|
|
|
|
|
|
|
The GNU MP Library is distributed in the hope that it will be useful, but
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2013-04-05 20:21:39 -04:00
|
|
|
along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
|
2009-07-24 13:16:50 -04:00
|
|
|
|
2013-04-10 20:56:11 -04:00
|
|
|
#include "mpir.h"
|
2009-07-24 13:16:50 -04:00
|
|
|
#include "gmp-impl.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
FIXME: Should use mpn_addmul_2 (and higher).
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
mpn_mullow_n_basecase (mp_ptr rp, mp_srcptr up, mp_srcptr vp, mp_size_t n)
|
|
|
|
{
|
|
|
|
mp_size_t i;
|
|
|
|
|
|
|
|
mpn_mul_1 (rp, up, n, vp[0]);
|
|
|
|
|
|
|
|
for (i = 1; i < n; i++)
|
2014-02-14 18:25:39 -05:00
|
|
|
mpn_addmul_1(rp + i, up, n - i, vp[i]);
|
2009-07-24 13:16:50 -04:00
|
|
|
}
|