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

     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.h"
    32  #include "gmp-impl.h"
    33  
    34  void
    35  mpz_divexact_ui (mpz_ptr dst, mpz_srcptr src, unsigned long divisor)
    36  {
    37    mp_size_t  size, abs_size;
    38    mp_ptr     dst_ptr;
    39  
    40    if (UNLIKELY (divisor == 0))
    41      DIVIDE_BY_ZERO;
    42  
    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)
    46      {
    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;
    54      }
    55  
    56    size = SIZ(src);
    57    if (size == 0)
    58      {
    59        SIZ(dst) = 0;
    60        return;
    61      }
    62    abs_size = ABS (size);
    63  
    64    dst_ptr = MPZ_REALLOC (dst, abs_size);
    65  
    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);
    69  }