mirror of
https://github.com/vale981/arb
synced 2025-03-06 09:51:39 -05:00
71 lines
1.8 KiB
C
71 lines
1.8 KiB
C
![]() |
/*=============================================================================
|
||
|
|
||
|
This file is part of ARB.
|
||
|
|
||
|
ARB is free software; you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation; either version 2 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
ARB 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 General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with ARB; if not, write to the Free Software
|
||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
|
||
|
=============================================================================*/
|
||
|
/******************************************************************************
|
||
|
|
||
|
Copyright (C) 2014 Fredrik Johansson
|
||
|
|
||
|
******************************************************************************/
|
||
|
|
||
|
#include "arf.h"
|
||
|
|
||
|
void
|
||
|
arf_set_mpn(arf_t y, mp_srcptr x, mp_size_t xn, int sgnbit)
|
||
|
{
|
||
|
unsigned int leading;
|
||
|
mp_size_t yn, xn1;
|
||
|
mp_ptr yptr;
|
||
|
mp_limb_t bot;
|
||
|
|
||
|
xn1 = xn;
|
||
|
|
||
|
while (x[0] == 0)
|
||
|
{
|
||
|
x++;
|
||
|
xn--;
|
||
|
}
|
||
|
|
||
|
count_leading_zeros(leading, x[xn - 1]);
|
||
|
|
||
|
bot = x[0];
|
||
|
|
||
|
/* This works when leading == 0, since x[0] != 0. */
|
||
|
yn = xn - ((bot << leading) == 0);
|
||
|
|
||
|
ARF_GET_MPN_WRITE(yptr, yn, y);
|
||
|
ARF_XSIZE(y) |= sgnbit;
|
||
|
|
||
|
if (leading == 0)
|
||
|
{
|
||
|
flint_mpn_copyi(yptr, x, xn);
|
||
|
}
|
||
|
else if (xn == yn)
|
||
|
{
|
||
|
mpn_lshift(yptr, x, yn, leading);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
mpn_lshift(yptr, x + 1, yn, leading);
|
||
|
yptr[0] |= (bot >> (FLINT_BITS - leading));
|
||
|
}
|
||
|
|
||
|
fmpz_set_ui(ARF_EXPREF(y), xn1 * FLINT_BITS - leading);
|
||
|
}
|
||
|
|