Home
last modified time | relevance | path

Searched refs:tp_frees (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Objects/
Dobject.c109 tp->tp_name, tp->tp_allocs, tp->tp_frees, in dump_counts()
134 tp->tp_frees, tp->tp_maxalloc); in get_counts()
177 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc) in inc_count()
178 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees; in inc_count()
183 tp->tp_frees++; in dec_count()
185 tp->tp_allocs == tp->tp_frees) { in dec_count()
332 --Py_TYPE(self)->tp_frees; in PyObject_CallFinalizerFromDealloc()
/external/python/cpython2/Objects/
Dobject.c98 tp->tp_name, tp->tp_allocs, tp->tp_frees, in dump_counts()
123 tp->tp_frees, tp->tp_maxalloc); in get_counts()
166 if (tp->tp_allocs - tp->tp_frees > tp->tp_maxalloc) in inc_count()
167 tp->tp_maxalloc = tp->tp_allocs - tp->tp_frees; in inc_count()
172 tp->tp_frees++; in dec_count()
174 tp->tp_allocs == tp->tp_frees) { in dec_count()
Dgenobject.c206 --self->ob_type->tp_frees; in gen_del()
Dclassobject.c701 --Py_TYPE(inst)->tp_frees; in instance_dealloc()
Dtypeobject.c5973 --Py_TYPE(self)->tp_frees;
/external/python/cpython3/Misc/
DSpecialBuilds.txt174 int tp_frees;
176 /* Highwater mark: the maximum value of tp_allocs - tp_frees so
205 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
/external/python/cpython2/Misc/
DSpecialBuilds.txt170 int tp_frees;
172 /* Highwater mark: the maximum value of tp_allocs - tp_frees so
201 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
/external/python/cpython2/Include/
Dobject.h406 Py_ssize_t tp_frees; member
733 #define _Py_DEC_TPFREES(OP) Py_TYPE(OP)->tp_frees--
/external/python/cpython3/Include/
Dobject.h430 Py_ssize_t tp_frees; member
756 #define _Py_DEC_TPFREES(OP) Py_TYPE(OP)->tp_frees--
/external/python/cpython2/Modules/_io/
Diobase.c259 --Py_TYPE(self)->tp_frees; in _PyIOBase_finalize()
/external/python/cpython3/Modules/
D_testcapimodule.c3231 --Py_TYPE(self)->tp_frees; in slot_tp_del()
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst1055 .. c:member:: Py_ssize_t PyTypeObject.tp_frees
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst1112 .. c:member:: Py_ssize_t PyTypeObject.tp_frees