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 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
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. |
#ifndef NUMPY_CORE_INCLUDE_NUMPY_ARRAYSCALARS_H_ #define NUMPY_CORE_INCLUDE_NUMPY_ARRAYSCALARS_H_ #ifndef _MULTIARRAYMODULE typedef struct { PyObject_HEAD npy_bool obval; } PyBoolScalarObject; #endif typedef struct { PyObject_HEAD signed char obval; } PyByteScalarObject; typedef struct { PyObject_HEAD short obval; } PyShortScalarObject; typedef struct { PyObject_HEAD int obval; } PyIntScalarObject; typedef struct { PyObject_HEAD long obval; } PyLongScalarObject; typedef struct { PyObject_HEAD npy_longlong obval; } PyLongLongScalarObject; typedef struct { PyObject_HEAD unsigned char obval; } PyUByteScalarObject; typedef struct { PyObject_HEAD unsigned short obval; } PyUShortScalarObject; typedef struct { PyObject_HEAD unsigned int obval; } PyUIntScalarObject; typedef struct { PyObject_HEAD unsigned long obval; } PyULongScalarObject; typedef struct { PyObject_HEAD npy_ulonglong obval; } PyULongLongScalarObject; typedef struct { PyObject_HEAD npy_half obval; } PyHalfScalarObject; typedef struct { PyObject_HEAD float obval; } PyFloatScalarObject; typedef struct { PyObject_HEAD double obval; } PyDoubleScalarObject; typedef struct { PyObject_HEAD npy_longdouble obval; } PyLongDoubleScalarObject; typedef struct { PyObject_HEAD npy_cfloat obval; } PyCFloatScalarObject; typedef struct { PyObject_HEAD npy_cdouble obval; } PyCDoubleScalarObject; typedef struct { PyObject_HEAD npy_clongdouble obval; } PyCLongDoubleScalarObject; typedef struct { PyObject_HEAD PyObject * obval; } PyObjectScalarObject; typedef struct { PyObject_HEAD npy_datetime obval; PyArray_DatetimeMetaData obmeta; } PyDatetimeScalarObject; typedef struct { PyObject_HEAD npy_timedelta obval; PyArray_DatetimeMetaData obmeta; } PyTimedeltaScalarObject; typedef struct { PyObject_HEAD char obval; } PyScalarObject; #define PyStringScalarObject PyBytesObject typedef struct { /* note that the PyObject_HEAD macro lives right here */ PyUnicodeObject base; Py_UCS4 *obval; #if NPY_FEATURE_VERSION >= NPY_1_20_API_VERSION char *buffer_fmt; #endif } PyUnicodeScalarObject; typedef struct { PyObject_VAR_HEAD char *obval; PyArray_Descr *descr; int flags; PyObject *base; #if NPY_FEATURE_VERSION >= NPY_1_20_API_VERSION void *_buffer_info; /* private buffer info, tagged to allow warning */ #endif } PyVoidScalarObject; /* Macros Py<Cls><bitsize>ScalarObject Py<Cls><bitsize>ArrType_Type are defined in ndarrayobject.h */ #define PyArrayScalar_False ((PyObject *)(&(_PyArrayScalar_BoolValues[0]))) #define PyArrayScalar_True ((PyObject *)(&(_PyArrayScalar_BoolValues[1]))) #define PyArrayScalar_FromLong(i) \ ((PyObject *)(&(_PyArrayScalar_BoolValues[((i)!=0)]))) #define PyArrayScalar_RETURN_BOOL_FROM_LONG(i) \ return Py_INCREF(PyArrayScalar_FromLong(i)), \ PyArrayScalar_FromLong(i) #define PyArrayScalar_RETURN_FALSE \ return Py_INCREF(PyArrayScalar_False), \ PyArrayScalar_False #define PyArrayScalar_RETURN_TRUE \ return Py_INCREF(PyArrayScalar_True), \ PyArrayScalar_True #define PyArrayScalar_New(cls) \ Py##cls##ArrType_Type.tp_alloc(&Py##cls##ArrType_Type, 0) #define PyArrayScalar_VAL(obj, cls) \ ((Py##cls##ScalarObject *)obj)->obval #define PyArrayScalar_ASSIGN(obj, cls, val) \ PyArrayScalar_VAL(obj, cls) = val #endif /* NUMPY_CORE_INCLUDE_NUMPY_ARRAYSCALARS_H_ */
SILENT KILLER Tool