kernel - CAM cleanup 1/N - Remove ancient scsi pccard drivers ncv, nsp, stg
[dragonfly.git] / contrib / gmp / mpf / iset.c
blob60ccebc6c10c1a48a30e170bc1f57572e0f00d4f
1 /* mpf_init_set -- Initialize a float and assign it from another float.
3 Copyright 1993, 1994, 1995, 2000, 2001, 2004 Free Software Foundation, Inc.
5 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.
12 The GNU MP Library is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
20 #include "gmp.h"
21 #include "gmp-impl.h"
23 void
24 mpf_init_set (mpf_ptr r, mpf_srcptr s)
26 mp_ptr rp, sp;
27 mp_size_t ssize, size;
28 mp_size_t prec;
30 prec = __gmp_default_fp_limb_precision;
31 r->_mp_d = (mp_ptr) (*__gmp_allocate_func) ((prec + 1) * BYTES_PER_MP_LIMB);
32 r->_mp_prec = prec;
34 prec++; /* lie not to lose precision in assignment */
35 ssize = s->_mp_size;
36 size = ABS (ssize);
38 rp = r->_mp_d;
39 sp = s->_mp_d;
41 if (size > prec)
43 sp += size - prec;
44 size = prec;
47 r->_mp_exp = s->_mp_exp;
48 r->_mp_size = ssize >= 0 ? size : -size;
50 MPN_COPY (rp, sp, size);