Current Path: > > opt > cloudlinux > venv > lib64 > 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. |
/* * This API is only provided because it is part of publicly exported * headers. Its use is considered DEPRECATED, and it will be removed * eventually. * (This includes the _PyArray_SigintHandler and _PyArray_GetSigintBuf * functions which are however, public API, and not headers.) * * Instead of using these non-threadsafe macros consider periodically * querying `PyErr_CheckSignals()` or `PyOS_InterruptOccurred()` will work. * Both of these require holding the GIL, although cpython could add a * version of `PyOS_InterruptOccurred()` which does not. Such a version * actually exists as private API in Python 3.10, and backported to 3.9 and 3.8, * see also https://bugs.python.org/issue41037 and * https://github.com/python/cpython/pull/20599). */ #ifndef NUMPY_CORE_INCLUDE_NUMPY_NPY_INTERRUPT_H_ #define NUMPY_CORE_INCLUDE_NUMPY_NPY_INTERRUPT_H_ #ifndef NPY_NO_SIGNAL #include <setjmp.h> #include <signal.h> #ifndef sigsetjmp #define NPY_SIGSETJMP(arg1, arg2) setjmp(arg1) #define NPY_SIGLONGJMP(arg1, arg2) longjmp(arg1, arg2) #define NPY_SIGJMP_BUF jmp_buf #else #define NPY_SIGSETJMP(arg1, arg2) sigsetjmp(arg1, arg2) #define NPY_SIGLONGJMP(arg1, arg2) siglongjmp(arg1, arg2) #define NPY_SIGJMP_BUF sigjmp_buf #endif # define NPY_SIGINT_ON { \ PyOS_sighandler_t _npy_sig_save; \ _npy_sig_save = PyOS_setsig(SIGINT, _PyArray_SigintHandler); \ if (NPY_SIGSETJMP(*((NPY_SIGJMP_BUF *)_PyArray_GetSigintBuf()), \ 1) == 0) { \ # define NPY_SIGINT_OFF } \ PyOS_setsig(SIGINT, _npy_sig_save); \ } #else /* NPY_NO_SIGNAL */ #define NPY_SIGINT_ON #define NPY_SIGINT_OFF #endif /* HAVE_SIGSETJMP */ #endif /* NUMPY_CORE_INCLUDE_NUMPY_NPY_INTERRUPT_H_ */
SILENT KILLER Tool