Searched refs:PyObject_IS_GC (Results 1 – 10 of 10) sorted by relevance
241 #define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \ macro317 (PyObject_IS_GC(obj) && \
30 (PyObject_IS_GC(obj) && \
124 PyAPI_FUNC(int) PyObject_IS_GC(PyObject *obj);
360 if (PyObject_IS_GC(op)) { in visit_decref()395 if (PyObject_IS_GC(op)) { in visit_reachable()562 if (PyObject_IS_GC(op)) { in visit_move()1287 if (! PyObject_IS_GC(obj)) in gc_get_referents()1336 if (PyObject_IS_GC(obj) && IS_TRACKED(obj)) in gc_is_tracked()
64 .. c:function:: int PyObject_IS_GC(PyObject *obj)
2446 assert(PyObject_IS_GC(op)); in _PyTrash_deposit_object()2458 assert(PyObject_IS_GC(op)); in _PyTrash_thread_deposit_object()
731 if (PyObject_IS_GC(o)) in _PySys_GetSizeOf()
2205 PyObject_IS_GC(PyObject *obj) in PyObject_IS_GC() function
1130 Convert :c:func:`PyObject_IS_GC` macro to a function to hide implementation
1351 * :c:func:`PyObject_IS_GC` macro was converted to a function.