Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dobjimpl.h263 #define _Py_AS_GC(o) ((PyGC_Head *)(o)-1) macro
272 PyGC_Head *g = _Py_AS_GC(o); \
287 PyGC_Head *g = _Py_AS_GC(o); \
297 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
/external/python/cpython2/Objects/
Dobject.c2442 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); in _PyTrash_deposit_object()
2444 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *)_PyTrash_delete_later; in _PyTrash_deposit_object()
2454 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); in _PyTrash_thread_deposit_object()
2456 _Py_AS_GC(op)->gc.gc_prev = (PyGC_Head *) tstate->trash_delete_later; in _PyTrash_thread_deposit_object()
2471 (PyObject*) _Py_AS_GC(op)->gc.gc_prev; in _PyTrash_destroy_chain()
2496 (PyObject*) _Py_AS_GC(op)->gc.gc_prev; in _PyTrash_thread_destroy_chain()
Dgenobject.c194 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED); in gen_del()
Dtypeobject.c5899 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);