Searched refs:_PyGCHead_SET_NEXT (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Include/internal/ |
D | pycore_object.h | 45 _PyGCHead_SET_NEXT(last, gc); in _PyObject_GC_TRACK_impl() 47 _PyGCHead_SET_NEXT(gc, generation0); in _PyObject_GC_TRACK_impl() 73 _PyGCHead_SET_NEXT(prev, next); in _PyObject_GC_UNTRACK_impl()
|
D | pycore_gc.h | 46 #define _PyGCHead_SET_NEXT(g, p) ((g)->_gc_next = (uintptr_t)(p)) macro
|
/external/python/cpython3/Modules/ |
D | gcmodule.c | 245 _PyGCHead_SET_NEXT(last, node); in gc_list_append() 248 _PyGCHead_SET_NEXT(node, list); in gc_list_append() 259 _PyGCHead_SET_NEXT(prev, next); in gc_list_remove() 275 _PyGCHead_SET_NEXT(from_prev, from_next); in gc_list_move() 282 _PyGCHead_SET_NEXT(to_prev, node); in gc_list_move() 284 _PyGCHead_SET_NEXT(node, list); in gc_list_move() 299 _PyGCHead_SET_NEXT(to_tail, from_head); in gc_list_merge() 302 _PyGCHead_SET_NEXT(from_tail, to); in gc_list_merge()
|