HomeSort by relevance Sort by last modified time
    Searched defs:Py_DECREF (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/cython/src/Cython/Runtime/
refnanny.pyx 1 from cpython.ref cimport PyObject, Py_INCREF, Py_DECREF, Py_XDECREF, Py_XINCREF
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/
yasm.pyx 58 cdef void Py_DECREF(object o)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h 124 this type. The Py_DECREF() macro uses the tp_dealloc method without
662 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
663 reference counts. Py_DECREF calls the object's deallocator function when
688 *** WARNING*** The Py_DECREF macro must have a side-effect-free argument
769 #define Py_DECREF(op) \
817 Py_DECREF(_py_tmp); \
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
830 PyAPI_FUNC(void) Py_DecRef(PyObject *);
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h 124 this type. The Py_DECREF() macro uses the tp_dealloc method without
662 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
663 reference counts. Py_DECREF calls the object's deallocator function when
688 *** WARNING*** The Py_DECREF macro must have a side-effect-free argument
769 #define Py_DECREF(op) \
817 Py_DECREF(_py_tmp); \
823 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
830 PyAPI_FUNC(void) Py_DecRef(PyObject *);
    [all...]

Completed in 3789 milliseconds