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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
767 #define Py_INCREF(op) ( \
824 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 652 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
755 #define Py_INCREF(op) ( \
812 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
819 PyAPI_FUNC(void) Py_IncRef(PyObject *);
    [all...]
  /external/python/cpython2/Include/
object.h 664 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
767 #define Py_INCREF(op) ( \
824 #define Py_XINCREF(op) do { if ((op) == NULL) ; else Py_INCREF(op); } while (0)
    [all...]
  /external/python/cpython3/Include/
object.h 691 The macros Py_INCREF(op) and Py_DECREF(op) are used to increment or decrement
794 #define Py_INCREF(op) ( \
856 Py_INCREF(_py_xincref_tmp); \
    [all...]

Completed in 52 milliseconds