Home
last modified time | relevance | path

Searched refs:id_refcount (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Dpystate.c132 interp->id_refcount = -1; in PyInterpreterState_New()
308 interp->id_refcount = 0; in _PyInterpreterState_IDInitref()
320 interp->id_refcount += 1; in _PyInterpreterState_IDIncref()
332 assert(interp->id_refcount != 0); in _PyInterpreterState_IDDecref()
333 interp->id_refcount -= 1; in _PyInterpreterState_IDDecref()
334 int64_t refcount = interp->id_refcount; in _PyInterpreterState_IDDecref()
/external/python/cpython3/Include/
Dpystate.h119 int64_t id_refcount; member