SILENT KILLERPanel

Current Path: > > opt > cloudlinux > venv > lib > > python3.11 > site-packages > numpy > core > include > numpy > >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //opt/cloudlinux/venv/lib//python3.11/site-packages/numpy/core/include/numpy//

NameTypeSizeLast ModifiedActions
libdivide Directory - -
random Directory - -
.doxyfile File 58 bytes April 17 2025 13:10:58.
__multiarray_api.h File 61519 bytes April 17 2025 13:10:58.
__ufunc_api.h File 12456 bytes April 17 2025 13:10:58.
_dtype_api.h File 16697 bytes April 17 2025 13:10:58.
_neighborhood_iterator_imp.h File 1857 bytes April 17 2025 13:10:58.
_numpyconfig.h File 854 bytes April 17 2025 13:10:58.
_numpyconfig.h.in File 867 bytes April 17 2025 13:10:58.
arrayobject.h File 282 bytes April 17 2025 13:10:58.
arrayscalars.h File 3944 bytes April 17 2025 13:10:58.
experimental_dtype_api.h File 15532 bytes April 17 2025 13:10:58.
halffloat.h File 1959 bytes April 17 2025 13:10:58.
ndarrayobject.h File 10183 bytes April 17 2025 13:10:58.
ndarraytypes.h File 68009 bytes April 17 2025 13:10:58.
noprefix.h File 6830 bytes April 17 2025 13:10:58.
npy_1_7_deprecated_api.h File 4327 bytes April 17 2025 13:10:58.
npy_3kcompat.h File 15883 bytes April 17 2025 13:10:58.
npy_common.h File 37688 bytes April 17 2025 13:10:58.
npy_cpu.h File 4629 bytes April 17 2025 13:10:58.
npy_endian.h File 2786 bytes April 17 2025 13:10:58.
npy_interrupt.h File 1948 bytes April 17 2025 13:10:58.
npy_math.h File 18945 bytes April 17 2025 13:10:58.
npy_no_deprecated_api.h File 678 bytes April 17 2025 13:10:58.
npy_os.h File 1120 bytes April 17 2025 13:10:58.
numpyconfig.h File 5308 bytes April 17 2025 13:10:58.
old_defines.h File 6405 bytes April 17 2025 13:10:58.
oldnumeric.h File 899 bytes April 17 2025 13:10:58.
ufuncobject.h File 12070 bytes April 17 2025 13:10:58.
utils.h File 1185 bytes April 17 2025 13:10:58.

Reading File: //opt/cloudlinux/venv/lib//python3.11/site-packages/numpy/core/include/numpy///npy_endian.h

#ifndef NUMPY_CORE_INCLUDE_NUMPY_NPY_ENDIAN_H_
#define NUMPY_CORE_INCLUDE_NUMPY_NPY_ENDIAN_H_

/*
 * NPY_BYTE_ORDER is set to the same value as BYTE_ORDER set by glibc in
 * endian.h
 */

#if defined(NPY_HAVE_ENDIAN_H) || defined(NPY_HAVE_SYS_ENDIAN_H)
    /* Use endian.h if available */

    #if defined(NPY_HAVE_ENDIAN_H)
    #include <endian.h>
    #elif defined(NPY_HAVE_SYS_ENDIAN_H)
    #include <sys/endian.h>
    #endif

    #if defined(BYTE_ORDER) && defined(BIG_ENDIAN) && defined(LITTLE_ENDIAN)
        #define NPY_BYTE_ORDER    BYTE_ORDER
        #define NPY_LITTLE_ENDIAN LITTLE_ENDIAN
        #define NPY_BIG_ENDIAN    BIG_ENDIAN
    #elif defined(_BYTE_ORDER) && defined(_BIG_ENDIAN) && defined(_LITTLE_ENDIAN)
        #define NPY_BYTE_ORDER    _BYTE_ORDER
        #define NPY_LITTLE_ENDIAN _LITTLE_ENDIAN
        #define NPY_BIG_ENDIAN    _BIG_ENDIAN
    #elif defined(__BYTE_ORDER) && defined(__BIG_ENDIAN) && defined(__LITTLE_ENDIAN)
        #define NPY_BYTE_ORDER    __BYTE_ORDER
        #define NPY_LITTLE_ENDIAN __LITTLE_ENDIAN
        #define NPY_BIG_ENDIAN    __BIG_ENDIAN
    #endif
#endif

#ifndef NPY_BYTE_ORDER
    /* Set endianness info using target CPU */
    #include "npy_cpu.h"

    #define NPY_LITTLE_ENDIAN 1234
    #define NPY_BIG_ENDIAN 4321

    #if defined(NPY_CPU_X86)                  \
            || defined(NPY_CPU_AMD64)         \
            || defined(NPY_CPU_IA64)          \
            || defined(NPY_CPU_ALPHA)         \
            || defined(NPY_CPU_ARMEL)         \
            || defined(NPY_CPU_ARMEL_AARCH32) \
            || defined(NPY_CPU_ARMEL_AARCH64) \
            || defined(NPY_CPU_SH_LE)         \
            || defined(NPY_CPU_MIPSEL)        \
            || defined(NPY_CPU_PPC64LE)       \
            || defined(NPY_CPU_ARCEL)         \
            || defined(NPY_CPU_RISCV64)       \
            || defined(NPY_CPU_LOONGARCH)     \
            || defined(NPY_CPU_WASM)
        #define NPY_BYTE_ORDER NPY_LITTLE_ENDIAN

    #elif defined(NPY_CPU_PPC)                \
            || defined(NPY_CPU_SPARC)         \
            || defined(NPY_CPU_S390)          \
            || defined(NPY_CPU_HPPA)          \
            || defined(NPY_CPU_PPC64)         \
            || defined(NPY_CPU_ARMEB)         \
            || defined(NPY_CPU_ARMEB_AARCH32) \
            || defined(NPY_CPU_ARMEB_AARCH64) \
            || defined(NPY_CPU_SH_BE)         \
            || defined(NPY_CPU_MIPSEB)        \
            || defined(NPY_CPU_OR1K)          \
            || defined(NPY_CPU_M68K)          \
            || defined(NPY_CPU_ARCEB)
        #define NPY_BYTE_ORDER NPY_BIG_ENDIAN

    #else
        #error Unknown CPU: can not set endianness
    #endif

#endif

#endif  /* NUMPY_CORE_INCLUDE_NUMPY_NPY_ENDIAN_H_ */

SILENT KILLER Tool