beta-0.89.2
[luatex.git] / source / libs / gmp / gmp-src / mpz / dive_ui.c
blob8a1b5a31ff887ca6c23a7779785379598422a81c
1 /* mpz_divexact_ui -- exact division mpz by ulong.
3 Copyright 2001, 2002, 2012 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 either:
10 * the GNU Lesser General Public License as published by the Free
11 Software Foundation; either version 3 of the License, or (at your
12 option) any later version.
16 * the GNU General Public License as published by the Free Software
17 Foundation; either version 2 of the License, or (at your option) any
18 later version.
20 or both in parallel, as here.
22 The GNU MP Library is distributed in the hope that it will be useful, but
23 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
24 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
25 for more details.
27 You should have received copies of the GNU General Public License and the
28 GNU Lesser General Public License along with the GNU MP Library. If not,
29 see https://www.gnu.org/licenses/. */
31 #include "gmp.h"
32 #include "gmp-impl.h"
34 void
35 mpz_divexact_ui (mpz_ptr dst, mpz_srcptr src, unsigned long divisor)
37 mp_size_t size, abs_size;
38 mp_ptr dst_ptr;
40 if (UNLIKELY (divisor == 0))
41 DIVIDE_BY_ZERO;
43 /* For nails don't try to be clever if d is bigger than a limb, just fake
44 up an mpz_t and go to the main mpz_divexact. */
45 if (divisor > GMP_NUMB_MAX)
47 mp_limb_t dlimbs[2];
48 mpz_t dz;
49 ALLOC(dz) = 2;
50 PTR(dz) = dlimbs;
51 mpz_set_ui (dz, divisor);
52 mpz_divexact (dst, src, dz);
53 return;
56 size = SIZ(src);
57 if (size == 0)
59 SIZ(dst) = 0;
60 return;
62 abs_size = ABS (size);
64 dst_ptr = MPZ_REALLOC (dst, abs_size);
66 MPN_DIVREM_OR_DIVEXACT_1 (dst_ptr, PTR(src), abs_size, (mp_limb_t) divisor);
67 abs_size -= (dst_ptr[abs_size-1] == 0);
68 SIZ(dst) = (size >= 0 ? abs_size : -abs_size);