Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dobject.c152 if (tp->tp_next == NULL && tp->tp_prev == NULL) { in inc_count()
157 type_list->tp_prev = tp; in inc_count()
187 if (tp->tp_prev) in dec_count()
188 tp->tp_prev->tp_next = tp->tp_next; in dec_count()
192 tp->tp_next->tp_prev = tp->tp_prev; in dec_count()
193 tp->tp_next = tp->tp_prev = NULL; in dec_count()
/external/python/cpython2/Objects/
Dobject.c141 if (tp->tp_next == NULL && tp->tp_prev == NULL) { in inc_count()
146 type_list->tp_prev = tp; in inc_count()
176 if (tp->tp_prev) in dec_count()
177 tp->tp_prev->tp_next = tp->tp_next; in dec_count()
181 tp->tp_next->tp_prev = tp->tp_prev; in dec_count()
182 tp->tp_next = tp->tp_prev = NULL; in dec_count()
/external/python/cpython2/Include/
Dobject.h408 struct _typeobject *tp_prev; member
/external/python/cpython3/Include/
Dobject.h432 struct _typeobject *tp_prev; member