numpy  2.0.0
src/multiarray/refcount.h
Go to the documentation of this file.
00001 #ifndef _NPY_PRIVATE_REFCOUNT_H_
00002 #define _NPY_PRIVATE_REFCOUNT_H_
00003 
00004 NPY_NO_EXPORT void
00005 PyArray_Item_INCREF(char *data, PyArray_Descr *descr);
00006 
00007 NPY_NO_EXPORT void
00008 PyArray_Item_XDECREF(char *data, PyArray_Descr *descr);
00009 
00010 NPY_NO_EXPORT int
00011 PyArray_INCREF(PyArrayObject *mp);
00012 
00013 NPY_NO_EXPORT int
00014 PyArray_XDECREF(PyArrayObject *mp);
00015 
00016 NPY_NO_EXPORT void
00017 PyArray_FillObjectArray(PyArrayObject *arr, PyObject *obj);
00018 
00019 #endif