Coverage Report

Created: 2024-06-28 06:19

/src/gmp-6.2.1/mpz/dive_ui.c
Line
Count
Source (jump to first uncovered line)
1
/* mpz_divexact_ui -- exact division mpz by ulong.
2
3
Copyright 2001, 2002, 2012 Free Software Foundation, Inc.
4
5
This file is part of the GNU MP Library.
6
7
The GNU MP Library is free software; you can redistribute it and/or modify
8
it under the terms of either:
9
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.
13
14
or
15
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.
19
20
or both in parallel, as here.
21
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.
26
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/.  */
30
31
#include "gmp-impl.h"
32
33
void
34
mpz_divexact_ui (mpz_ptr dst, mpz_srcptr src, unsigned long divisor)
35
17
{
36
17
  mp_size_t  size, abs_size;
37
17
  mp_ptr     dst_ptr;
38
39
17
  if (UNLIKELY (divisor == 0))
40
0
    DIVIDE_BY_ZERO;
41
42
  /* For nails don't try to be clever if d is bigger than a limb, just fake
43
     up an mpz_t and go to the main mpz_divexact.  */
44
17
  if (divisor > GMP_NUMB_MAX)
45
0
    {
46
0
      mp_limb_t  dlimbs[2];
47
0
      mpz_t      dz;
48
0
      ALLOC(dz) = 2;
49
0
      PTR(dz) = dlimbs;
50
0
      mpz_set_ui (dz, divisor);
51
0
      mpz_divexact (dst, src, dz);
52
0
      return;
53
0
    }
54
55
17
  size = SIZ(src);
56
17
  if (size == 0)
57
1
    {
58
1
      SIZ(dst) = 0;
59
1
      return;
60
1
    }
61
16
  abs_size = ABS (size);
62
63
16
  dst_ptr = MPZ_REALLOC (dst, abs_size);
64
65
16
  MPN_DIVREM_OR_DIVEXACT_1 (dst_ptr, PTR(src), abs_size, (mp_limb_t) divisor);
66
16
  abs_size -= (dst_ptr[abs_size-1] == 0);
67
16
  SIZ(dst) = (size >= 0 ? abs_size : -abs_size);
68
16
}