github.com/aergoio/aergo@v1.3.1/libtool/src/gmp-6.1.2/mpz/sqrt.c (about)

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