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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 124 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) \
819 Py_DECREF(_py_tmp); \
825 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 124 this type. The Py_DECREF() macro uses the tp_dealloc method without
652 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
653 reference counts. Py_DECREF calls the object's deallocator function when
678 *** WARNING*** The Py_DECREF macro must have a side-effect-free argument
759 #define Py_DECREF(op) \
807 Py_DECREF(_py_tmp); \
813 #define Py_XDECREF(op) do { if ((op) == NULL) ; else Py_DECREF(op); } while (0)
820 PyAPI_FUNC(void) Py_DecRef(PyObject *);
    [all...]
  /external/python/cpython2/Include/
object.h 124 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) \
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_tmp);
    [all...]
  /external/python/cpython3/Include/
object.h 160 this type. The Py_DECREF() macro uses the tp_dealloc method without
691 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
692 reference counts. Py_DECREF calls the object's deallocator function when
798 #define Py_DECREF(op) \
847 Py_DECREF(_py_tmp); \
    [all...]

Completed in 597 milliseconds