!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-5.13-headers-5.13.0-1018/arch/xtensa/include/asm/   drwxr-xr-x
Free 83.24 GB of 96.73 GB (86.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     delay.h (1.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * include/asm-xtensa/delay.h
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 2001 - 2005 Tensilica Inc.
 *
 */

#ifndef _XTENSA_DELAY_H
#define _XTENSA_DELAY_H

#include <asm/timex.h>
#include <asm/param.h>

extern unsigned long loops_per_jiffy;

static inline void __delay(unsigned long loops)
{
    if (__builtin_constant_p(loops) && loops < 2)
        __asm__ __volatile__ ("nop");
    else if (loops >= 2)
        /* 2 cycles per loop. */
        __asm__ __volatile__ ("1: addi %0, %0, -2; bgeui %0, 2, 1b"
                : "+r" (loops));
}

/* Undefined function to get compile-time error */
void __bad_udelay(void);
void __bad_ndelay(void);

#define __MAX_UDELAY 30000
#define __MAX_NDELAY 30000

static inline void __udelay(unsigned long usecs)
{
    unsigned long start = get_ccount();
    unsigned long cycles = (usecs * (ccount_freq >> 15)) >> 5;

    /* Note: all variables are unsigned (can wrap around)! */
    while (((unsigned long)get_ccount()) - start < cycles)
        cpu_relax();
}

static inline void udelay(unsigned long usec)
{
    if (__builtin_constant_p(usec) && usec >= __MAX_UDELAY)
        __bad_udelay();
    else
        __udelay(usec);
}

static inline void __ndelay(unsigned long nsec)
{
    /*
     * Inner shift makes sure multiplication doesn't overflow
     * for legitimate nsec values
     */
    unsigned long cycles = (nsec * (ccount_freq >> 15)) >> 15;
    __delay(cycles);
}

#define ndelay(n) ndelay(n)

static inline void ndelay(unsigned long nsec)
{
    if (__builtin_constant_p(nsec) && nsec >= __MAX_NDELAY)
        __bad_ndelay();
    else
        __ndelay(nsec);
}

#endif

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0044 ]--