top(1): Raise WARNS to 6 and fix warnings.
[dragonfly.git] / contrib / gmp / mpz / fdiv_r_ui.c
blobd16e43225896665da118828632fe6d3412929204
1 /* mpz_fdiv_r_ui -- Division rounding the quotient towards -infinity.
2 The remainder gets the same sign as the denominator.
4 Copyright 1994, 1995, 1996, 2001, 2002, 2004, 2005 Free Software Foundation,
5 Inc.
7 This file is part of the GNU MP Library.
9 The GNU MP Library is free software; you can redistribute it and/or modify
10 it under the terms of the GNU Lesser General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or (at your
12 option) any later version.
14 The GNU MP Library is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 License for more details.
19 You should have received a copy of the GNU Lesser General Public License
20 along with the GNU MP Library. If not, see http://www.gnu.org/licenses/. */
22 #include "gmp.h"
23 #include "gmp-impl.h"
25 unsigned long int
26 mpz_fdiv_r_ui (mpz_ptr rem, mpz_srcptr dividend, unsigned long int divisor)
28 mp_size_t ns, nn;
29 mp_ptr np;
30 mp_limb_t rl;
32 if (divisor == 0)
33 DIVIDE_BY_ZERO;
35 ns = SIZ(dividend);
36 if (ns == 0)
38 SIZ(rem) = 0;
39 return 0;
42 nn = ABS(ns);
43 np = PTR(dividend);
44 #if BITS_PER_ULONG > GMP_NUMB_BITS /* avoid warnings about shift amount */
45 if (divisor > GMP_NUMB_MAX)
47 mp_limb_t dp[2];
48 mp_ptr rp, qp;
49 mp_size_t rn;
50 TMP_DECL;
52 MPZ_REALLOC (rem, 2);
53 rp = PTR(rem);
55 if (nn == 1) /* tdiv_qr requirements; tested above for 0 */
57 rl = np[0];
58 rp[0] = rl;
60 else
62 TMP_MARK;
63 dp[0] = divisor & GMP_NUMB_MASK;
64 dp[1] = divisor >> GMP_NUMB_BITS;
65 qp = TMP_ALLOC_LIMBS (nn - 2 + 1);
66 mpn_tdiv_qr (qp, rp, (mp_size_t) 0, np, nn, dp, (mp_size_t) 2);
67 TMP_FREE;
68 rl = rp[0] + (rp[1] << GMP_NUMB_BITS);
71 if (rl != 0 && ns < 0)
73 rl = divisor - rl;
74 rp[0] = rl & GMP_NUMB_MASK;
75 rp[1] = rl >> GMP_NUMB_BITS;
78 rn = 1 + (rl > GMP_NUMB_MAX); rn -= (rp[rn - 1] == 0);
79 SIZ(rem) = rn;
81 else
82 #endif
84 rl = mpn_mod_1 (np, nn, (mp_limb_t) divisor);
85 if (rl == 0)
86 SIZ(rem) = 0;
87 else
89 if (ns < 0)
90 rl = divisor - rl;
92 PTR(rem)[0] = rl;
93 SIZ(rem) = 1;
97 return rl;