Home
last modified time | relevance | path

Searched refs:_PyGC_REFS_UNTRACKED (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dobjimpl.h280 #define _PyGC_REFS_UNTRACKED (-2) macro
288 if (g->gc.gc_refs != _PyGC_REFS_UNTRACKED) \
303 assert(g->gc.gc_refs != _PyGC_REFS_UNTRACKED); \
304 g->gc.gc_refs = _PyGC_REFS_UNTRACKED; \
312 ((_Py_AS_GC(o))->gc.gc_refs != _PyGC_REFS_UNTRACKED)
/external/python/cpython3/Include/
Dobjimpl.h289 #define _PyGC_REFS_UNTRACKED (-2) macro
297 if (_PyGCHead_REFS(g) != _PyGC_REFS_UNTRACKED) \
312 assert(_PyGCHead_REFS(g) != _PyGC_REFS_UNTRACKED); \
313 _PyGCHead_SET_REFS(g, _PyGC_REFS_UNTRACKED); \
321 (_PyGC_REFS(o) != _PyGC_REFS_UNTRACKED)
/external/python/cpython2/Objects/
Dgenobject.c194 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED); in gen_del()
Dobject.c2447 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); in _PyTrash_deposit_object()
2459 assert(_Py_AS_GC(op)->gc.gc_refs == _PyGC_REFS_UNTRACKED); in _PyTrash_thread_deposit_object()
Dtypeobject.c5962 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED);
/external/python/cpython3/Objects/
Dobject.c320 assert(_PyGC_REFS(self) != _PyGC_REFS_UNTRACKED); in PyObject_CallFinalizerFromDealloc()
2136 assert(_PyGC_REFS(op) == _PyGC_REFS_UNTRACKED); in _PyTrash_deposit_object()
2148 assert(_PyGC_REFS(op) == _PyGC_REFS_UNTRACKED); in _PyTrash_thread_deposit_object()
/external/python/cpython2/Modules/
Dgcmodule.c209 #define GC_UNTRACKED _PyGC_REFS_UNTRACKED
/external/python/cpython3/Modules/
Dgcmodule.c120 #define GC_UNTRACKED _PyGC_REFS_UNTRACKED
D_testcapimodule.c3220 _Py_AS_GC(self)->gc.gc_refs != _PyGC_REFS_UNTRACKED); in slot_tp_del()