Searched defs:Py_DECREF (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Include/
H A Dobject.h124 this type. The Py_DECREF() macro uses the tp_dealloc method without
664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
665 reference counts. Py_DECREF calls the object's deallocator function when
690 *** WARNING*** The Py_DECREF macro must have a side-effect-free argument
771 #define Py_DECREF(op) \ macro
819 Py_DECREF(_py_tmp); \
825 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
831 * Py_DECREF(op);
843 * Py_DECREF.
850 Py_DECREF(_py_tm
[all...]
/external/python/cpython3/Include/
H A Dobject.h160 this type. The Py_DECREF() macro uses the tp_dealloc method without
678 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
679 reference counts. Py_DECREF calls the object's deallocator function when
787 #define Py_DECREF(op) \ macro
836 Py_DECREF(_py_tmp); \
852 Py_DECREF(_py_xdecref_tmp); \
860 * Py_DECREF(op);
872 * Py_DECREF.
879 Py_DECREF(_py_tmp); \
972 objects must be stored somewhere or destroyed again with Py_DECREF()
[all...]

Completed in 193 milliseconds