sbin/mount_hammer: Use calloc(3) and cleanups
[dragonfly.git] / contrib / gmp / mpf / trunc.c
blobd329bc1bc573ca5158b5cbdb58832452a08e7938
1 /* mpf_trunc -- truncate an mpf to an integer.
3 Copyright 2001 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"
24 /* Notice the use of prec+1 ensures mpf_trunc is equivalent to mpf_set if u
25 is already an integer. */
27 void
28 mpf_trunc (mpf_ptr r, mpf_srcptr u)
30 mp_ptr rp;
31 mp_srcptr up;
32 mp_size_t size, asize, prec;
33 mp_exp_t exp;
35 exp = EXP(u);
36 size = SIZ(u);
37 if (size == 0 || exp <= 0)
39 /* u is only a fraction */
40 SIZ(r) = 0;
41 EXP(r) = 0;
42 return;
45 up = PTR(u);
46 EXP(r) = exp;
47 asize = ABS (size);
48 up += asize;
50 /* skip fraction part of u */
51 asize = MIN (asize, exp);
53 /* don't lose precision in the copy */
54 prec = PREC(r) + 1;
56 /* skip excess over target precision */
57 asize = MIN (asize, prec);
59 up -= asize;
60 rp = PTR(r);
61 SIZ(r) = (size >= 0 ? asize : -asize);
62 if (rp != up)
63 MPN_COPY_INCR (rp, up, asize);