Software: Apache. PHP/5.4.45 

uname -a: Linux webm056.cluster010.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue
Sep 17 08:14:20 UTC 2024 x86_64
 

uid=243112(mycochar) gid=100(users) groups=100(users)  

Safe-mode: OFF (not secure)

/home/mycochar/www/image/photo/gcc-12.3.0/gmp-6.2.1/mpn/generic/   drwxr-xr-x
Free 0 B of 0 B (0%)
Your ip: 216.73.216.77 - Server ip: 213.186.33.19
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    

[Enumerate]    [Encoder]    [Tools]    [Proc.]    [FTP Brute]    [Sec.]    [SQL]    [PHP-Code]    [Backdoor Host]    [Back-Connection]    [milw0rm it!]    [PHP-Proxy]    [Self remove]
    


Viewing file:     sqr_basecase.c (8.36 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* mpn_sqr_basecase -- Internal routine to square a natural number
   of length n.

   THIS IS AN INTERNAL FUNCTION WITH A MUTABLE INTERFACE.  IT IS ONLY
   SAFE TO REACH THIS FUNCTION THROUGH DOCUMENTED INTERFACES.


Copyright 1991-1994, 1996, 1997, 2000-2005, 2008, 2010, 2011, 2017 Free
Software Foundation, Inc.

This file is part of the GNU MP Library.

The GNU MP Library is free software; you can redistribute it and/or modify
it under the terms of either:

  * the GNU Lesser General Public License as published by the Free
    Software Foundation; either version 3 of the License, or (at your
    option) any later version.

or

  * the GNU General Public License as published by the Free Software
    Foundation; either version 2 of the License, or (at your option) any
    later version.

or both in parallel, as here.

The GNU MP Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received copies of the GNU General Public License and the
GNU Lesser General Public License along with the GNU MP Library.  If not,
see https://www.gnu.org/licenses/.  */

#include "gmp-impl.h"
#include "longlong.h"


#if HAVE_NATIVE_mpn_sqr_diagonal
#define MPN_SQR_DIAGONAL(rp, up, n)                    \
  mpn_sqr_diagonal (rp, up, n)
#else
#define MPN_SQR_DIAGONAL(rp, up, n)                    \
  do {                                    \
    mp_size_t _i;                            \
    for (_i = 0; _i < (n); _i++)                    \
      {                                    \
    mp_limb_t ul, lpl;                        \
    ul = (up)[_i];                            \
    umul_ppmm ((rp)[2 * _i + 1], lpl, ul, ul << GMP_NAIL_BITS);    \
    (rp)[2 * _i] = lpl >> GMP_NAIL_BITS;                \
      }                                    \
  } while (0)
#endif

#if HAVE_NATIVE_mpn_sqr_diag_addlsh1
#define MPN_SQR_DIAG_ADDLSH1(rp, tp, up, n)                \
  mpn_sqr_diag_addlsh1 (rp, tp, up, n)
#else
#if HAVE_NATIVE_mpn_addlsh1_n
#define MPN_SQR_DIAG_ADDLSH1(rp, tp, up, n)                \
  do {                                    \
    mp_limb_t cy;                            \
    MPN_SQR_DIAGONAL (rp, up, n);                    \
    cy = mpn_addlsh1_n (rp + 1, rp + 1, tp, 2 * n - 2);            \
    rp[2 * n - 1] += cy;                        \
  } while (0)
#else
#define MPN_SQR_DIAG_ADDLSH1(rp, tp, up, n)                \
  do {                                    \
    mp_limb_t cy;                            \
    MPN_SQR_DIAGONAL (rp, up, n);                    \
    cy = mpn_lshift (tp, tp, 2 * n - 2, 1);                \
    cy += mpn_add_n (rp + 1, rp + 1, tp, 2 * n - 2);            \
    rp[2 * n - 1] += cy;                        \
  } while (0)
#endif
#endif


#undef READY_WITH_mpn_sqr_basecase


#if ! defined (READY_WITH_mpn_sqr_basecase) && HAVE_NATIVE_mpn_addmul_2s
void
mpn_sqr_basecase (mp_ptr rp, mp_srcptr up, mp_size_t n)
{
  mp_size_t i;
  mp_limb_t tarr[2 * SQR_TOOM2_THRESHOLD];
  mp_ptr tp = tarr;
  mp_limb_t cy;

  /* must fit 2*n limbs in tarr */
  ASSERT (n <= SQR_TOOM2_THRESHOLD);

  if ((n & 1) != 0)
    {
      if (n == 1)
    {
      mp_limb_t ul, lpl;
      ul = up[0];
      umul_ppmm (rp[1], lpl, ul, ul << GMP_NAIL_BITS);
      rp[0] = lpl >> GMP_NAIL_BITS;
      return;
    }

      MPN_ZERO (tp, n);

      for (i = 0; i <= n - 2; i += 2)
    {
      cy = mpn_addmul_2s (tp + 2 * i, up + i + 1, n - (i + 1), up + i);
      tp[n + i] = cy;
    }
    }
  else
    {
      if (n == 2)
    {
#if HAVE_NATIVE_mpn_mul_2
      rp[3] = mpn_mul_2 (rp, up, 2, up);
#else
      rp[0] = 0;
      rp[1] = 0;
      rp[3] = mpn_addmul_2 (rp, up, 2, up);
#endif
      return;
    }

      MPN_ZERO (tp, n);

      for (i = 0; i <= n - 4; i += 2)
    {
      cy = mpn_addmul_2s (tp + 2 * i, up + i + 1, n - (i + 1), up + i);
      tp[n + i] = cy;
    }
      cy = mpn_addmul_1 (tp + 2 * n - 4, up + n - 1, 1, up[n - 2]);
      tp[2 * n - 3] = cy;
    }

  MPN_SQR_DIAG_ADDLSH1 (rp, tp, up, n);
}
#define READY_WITH_mpn_sqr_basecase
#endif


#if ! defined (READY_WITH_mpn_sqr_basecase) && HAVE_NATIVE_mpn_addmul_2

/* mpn_sqr_basecase using plain mpn_addmul_2.

   This is tricky, since we have to let mpn_addmul_2 make some undesirable
   multiplies, u[k]*u[k], that we would like to let mpn_sqr_diagonal handle.
   This forces us to conditionally add or subtract the mpn_sqr_diagonal
   results.  Examples of the product we form:

   n = 4              n = 5        n = 6
   u1u0 * u3u2u1      u1u0 * u4u3u2u1    u1u0 * u5u4u3u2u1
   u2 * u3          u3u2 * u4u3    u3u2 * u5u4u3
                    u4 * u5
   add: u0 u2 u3      add: u0 u2 u4    add: u0 u2 u4 u5
   sub: u1          sub: u1 u3    sub: u1 u3
*/

void
mpn_sqr_basecase (mp_ptr rp, mp_srcptr up, mp_size_t n)
{
  mp_size_t i;
  mp_limb_t tarr[2 * SQR_TOOM2_THRESHOLD];
  mp_ptr tp = tarr;
  mp_limb_t cy;

  /* must fit 2*n limbs in tarr */
  ASSERT (n <= SQR_TOOM2_THRESHOLD);

  if ((n & 1) != 0)
    {
      mp_limb_t x0, x1;

      if (n == 1)
    {
      mp_limb_t ul, lpl;
      ul = up[0];
      umul_ppmm (rp[1], lpl, ul, ul << GMP_NAIL_BITS);
      rp[0] = lpl >> GMP_NAIL_BITS;
      return;
    }

      /* The code below doesn't like unnormalized operands.  Since such
     operands are unusual, handle them with a dumb recursion.  */
      if (up[n - 1] == 0)
    {
      rp[2 * n - 2] = 0;
      rp[2 * n - 1] = 0;
      mpn_sqr_basecase (rp, up, n - 1);
      return;
    }

      MPN_ZERO (tp, n);

      for (i = 0; i <= n - 2; i += 2)
    {
      cy = mpn_addmul_2 (tp + 2 * i, up + i + 1, n - (i + 1), up + i);
      tp[n + i] = cy;
    }

      MPN_SQR_DIAGONAL (rp, up, n);

      for (i = 2;; i += 4)
    {
      x0 = rp[i + 0];
      rp[i + 0] = (-x0) & GMP_NUMB_MASK;
      x1 = rp[i + 1];
      rp[i + 1] = (-x1 - (x0 != 0)) & GMP_NUMB_MASK;
      __GMPN_SUB_1 (cy, rp + i + 2, rp + i + 2, 2, (x1 | x0) != 0);
      if (i + 4 >= 2 * n)
        break;
      mpn_incr_u (rp + i + 4, cy);
    }
    }
  else
    {
      mp_limb_t x0, x1;

      if (n == 2)
    {
#if HAVE_NATIVE_mpn_mul_2
      rp[3] = mpn_mul_2 (rp, up, 2, up);
#else
      rp[0] = 0;
      rp[1] = 0;
      rp[3] = mpn_addmul_2 (rp, up, 2, up);
#endif
      return;
    }

      /* The code below doesn't like unnormalized operands.  Since such
     operands are unusual, handle them with a dumb recursion.  */
      if (up[n - 1] == 0)
    {
      rp[2 * n - 2] = 0;
      rp[2 * n - 1] = 0;
      mpn_sqr_basecase (rp, up, n - 1);
      return;
    }

      MPN_ZERO (tp, n);

      for (i = 0; i <= n - 4; i += 2)
    {
      cy = mpn_addmul_2 (tp + 2 * i, up + i + 1, n - (i + 1), up + i);
      tp[n + i] = cy;
    }
      cy = mpn_addmul_1 (tp + 2 * n - 4, up + n - 1, 1, up[n - 2]);
      tp[2 * n - 3] = cy;

      MPN_SQR_DIAGONAL (rp, up, n);

      for (i = 2;; i += 4)
    {
      x0 = rp[i + 0];
      rp[i + 0] = (-x0) & GMP_NUMB_MASK;
      x1 = rp[i + 1];
      rp[i + 1] = (-x1 - (x0 != 0)) & GMP_NUMB_MASK;
      if (i + 6 >= 2 * n)
        break;
      __GMPN_SUB_1 (cy, rp + i + 2, rp + i + 2, 2, (x1 | x0) != 0);
      mpn_incr_u (rp + i + 4, cy);
    }
      mpn_decr_u (rp + i + 2, (x1 | x0) != 0);
    }

#if HAVE_NATIVE_mpn_addlsh1_n
  cy = mpn_addlsh1_n (rp + 1, rp + 1, tp, 2 * n - 2);
#else
  cy = mpn_lshift (tp, tp, 2 * n - 2, 1);
  cy += mpn_add_n (rp + 1, rp + 1, tp, 2 * n - 2);
#endif
  rp[2 * n - 1] += cy;
}
#define READY_WITH_mpn_sqr_basecase
#endif


#if ! defined (READY_WITH_mpn_sqr_basecase) && HAVE_NATIVE_mpn_sqr_diag_addlsh1

/* mpn_sqr_basecase using mpn_addmul_1 and mpn_sqr_diag_addlsh1, avoiding stack
   allocation.  */
void
mpn_sqr_basecase (mp_ptr rp, mp_srcptr up, mp_size_t n)
{
  if (n == 1)
    {
      mp_limb_t ul, lpl;
      ul = up[0];
      umul_ppmm (rp[1], lpl, ul, ul << GMP_NAIL_BITS);
      rp[0] = lpl >> GMP_NAIL_BITS;
    }
  else
    {
      mp_size_t i;
      mp_ptr xp;

      rp += 1;
      rp[n - 1] = mpn_mul_1 (rp, up + 1, n - 1, up[0]);
      for (i = n - 2; i != 0; i--)
    {
      up += 1;
      rp += 2;
      rp[i] = mpn_addmul_1 (rp, up + 1, i, up[0]);
    }

      xp = rp - 2 * n + 3;
      mpn_sqr_diag_addlsh1 (xp, xp + 1, up - n + 2, n);
    }
}
#define READY_WITH_mpn_sqr_basecase
#endif


#if ! defined (READY_WITH_mpn_sqr_basecase)

/* Default mpn_sqr_basecase using mpn_addmul_1.  */
void
mpn_sqr_basecase (mp_ptr rp, mp_srcptr up, mp_size_t n)
{
  mp_size_t i;

  ASSERT (n >= 1);
  ASSERT (! MPN_OVERLAP_P (rp, 2*n, up, n));

  if (n == 1)
    {
      mp_limb_t ul, lpl;
      ul = up[0];
      umul_ppmm (rp[1], lpl, ul, ul << GMP_NAIL_BITS);
      rp[0] = lpl >> GMP_NAIL_BITS;
    }
  else
    {
      mp_limb_t tarr[2 * SQR_TOOM2_THRESHOLD];
      mp_ptr tp = tarr;
      mp_limb_t cy;

      /* must fit 2*n limbs in tarr */
      ASSERT (n <= SQR_TOOM2_THRESHOLD);

      cy = mpn_mul_1 (tp, up + 1, n - 1, up[0]);
      tp[n - 1] = cy;
      for (i = 2; i < n; i++)
    {
      mp_limb_t cy;
      cy = mpn_addmul_1 (tp + 2 * i - 2, up + i, n - i, up[i - 1]);
      tp[n + i - 2] = cy;
    }

      MPN_SQR_DIAG_ADDLSH1 (rp, tp, up, n);
    }
}
#define READY_WITH_mpn_sqr_basecase
#endif

Enter:
 
Select:
 

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

Search
  - regexp 

Upload
 
[ ok ]

Make Dir
 
[ ok ]
Make File
 
[ ok ]

Go Dir
 
Go File
 

--[ x2300 Locus7Shell v. 1.0a beta Modded by #!physx^ | www.LOCUS7S.com | Generation time: 0.006 ]--