Home
last modified time | relevance | path

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

/external/python/cpython3/Include/internal/
Dpycore_interp.h82 int64_t id_refcount; member
/external/python/cpython3/Python/
Dpystate.c211 interp->id_refcount = -1; in PyInterpreterState_New()
491 interp->id_refcount = 0; in _PyInterpreterState_IDInitref()
503 interp->id_refcount += 1; in _PyInterpreterState_IDIncref()
516 assert(interp->id_refcount != 0); in _PyInterpreterState_IDDecref()
517 interp->id_refcount -= 1; in _PyInterpreterState_IDDecref()
518 int64_t refcount = interp->id_refcount; in _PyInterpreterState_IDDecref()