Coverage Report

Created: 2025-03-09 06:52

/src/gmp-6.2.1/mpz/sqrtrem.c
Line
Count
Source (jump to first uncovered line)
1
/* mpz_sqrtrem(root,rem,x) -- Set ROOT to floor(sqrt(X)) and REM
2
   to the remainder, i.e. X - ROOT**2.
3
4
Copyright 1991, 1993, 1994, 1996, 2000, 2001, 2005, 2011, 2012, 2015 Free
5
Software Foundation, Inc.
6
7
This file is part of the GNU MP Library.
8
9
The GNU MP Library is free software; you can redistribute it and/or modify
10
it under the terms of either:
11
12
  * the GNU Lesser General Public License as published by the Free
13
    Software Foundation; either version 3 of the License, or (at your
14
    option) any later version.
15
16
or
17
18
  * the GNU General Public License as published by the Free Software
19
    Foundation; either version 2 of the License, or (at your option) any
20
    later version.
21
22
or both in parallel, as here.
23
24
The GNU MP Library is distributed in the hope that it will be useful, but
25
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
26
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
27
for more details.
28
29
You should have received copies of the GNU General Public License and the
30
GNU Lesser General Public License along with the GNU MP Library.  If not,
31
see https://www.gnu.org/licenses/.  */
32
33
#include "gmp-impl.h"
34
35
void
36
mpz_sqrtrem (mpz_ptr root, mpz_ptr rem, mpz_srcptr op)
37
567
{
38
567
  mp_size_t op_size, root_size, rem_size;
39
567
  mp_ptr root_ptr, op_ptr, rem_ptr;
40
41
567
  op_size = SIZ (op);
42
567
  if (UNLIKELY (op_size <= 0))
43
11
    {
44
11
      if (UNLIKELY (op_size < 0))
45
0
  SQRT_OF_NEGATIVE;
46
11
      SIZ(root) = 0;
47
11
      SIZ(rem) = 0;
48
11
      return;
49
11
    }
50
51
  /* No-op if rem == op */
52
556
  rem_ptr = MPZ_NEWALLOC (rem, op_size);
53
54
  /* The size of the root is accurate after this simple calculation.  */
55
556
  root_size = (op_size + 1) / 2;
56
556
  SIZ (root) = root_size;
57
58
556
  op_ptr = PTR (op);
59
60
556
  if (root == op)
61
0
    {
62
      /* Allocate temp space for the root, which we then copy to the
63
   shared OP/ROOT variable.  */
64
0
      TMP_DECL;
65
0
      TMP_MARK;
66
67
0
      root_ptr = TMP_ALLOC_LIMBS (root_size);
68
0
      rem_size = mpn_sqrtrem (root_ptr, rem_ptr, op_ptr, op_size);
69
70
0
      if (rem != root) /* Don't overwrite remainder */
71
0
  MPN_COPY (op_ptr, root_ptr, root_size);
72
73
0
      TMP_FREE;
74
0
    }
75
556
  else
76
556
    {
77
556
      root_ptr = MPZ_NEWALLOC (root, root_size);
78
79
556
      rem_size = mpn_sqrtrem (root_ptr, rem_ptr, op_ptr, op_size);
80
556
    }
81
82
  /* Write remainder size last, to make this function give only the square root
83
     remainder, when passed ROOT == REM.  */
84
556
  SIZ (rem) = rem_size;
85
556
}