Home
last modified time | relevance | path

Searched refs:PyObject_IS_GC (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dobjimpl.h241 #define PyObject_IS_GC(o) (PyType_IS_GC(Py_TYPE(o)) && \ macro
302 (PyObject_IS_GC(obj) && \
/external/python/cpython2/Modules/
Dgcmodule.c360 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()
1290 if (! PyObject_IS_GC(obj)) in gc_get_referents()
1339 if (PyObject_IS_GC(obj) && IS_TRACKED(obj)) in gc_is_tracked()
/external/python/cpython2/Objects/
Dobject.c2441 assert(PyObject_IS_GC(op)); in _PyTrash_deposit_object()
2453 assert(PyObject_IS_GC(op)); in _PyTrash_thread_deposit_object()
/external/python/cpython2/Python/
Dsysmodule.c731 if (PyObject_IS_GC(o)) in _PySys_GetSizeOf()