Searched refs:tp_frees (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython3/Objects/ |
D | object.c | 109 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/ |
D | object.c | 98 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()
|
D | genobject.c | 206 --self->ob_type->tp_frees; in gen_del()
|
D | classobject.c | 701 --Py_TYPE(inst)->tp_frees; in instance_dealloc()
|
D | typeobject.c | 5973 --Py_TYPE(self)->tp_frees;
|
/external/python/cpython3/Misc/ |
D | SpecialBuilds.txt | 174 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/ |
D | SpecialBuilds.txt | 170 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/ |
D | object.h | 406 Py_ssize_t tp_frees; member 733 #define _Py_DEC_TPFREES(OP) Py_TYPE(OP)->tp_frees--
|
/external/python/cpython3/Include/ |
D | object.h | 430 Py_ssize_t tp_frees; member 756 #define _Py_DEC_TPFREES(OP) Py_TYPE(OP)->tp_frees--
|
/external/python/cpython2/Modules/_io/ |
D | iobase.c | 259 --Py_TYPE(self)->tp_frees; in _PyIOBase_finalize()
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 3231 --Py_TYPE(self)->tp_frees; in slot_tp_del()
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1055 .. c:member:: Py_ssize_t PyTypeObject.tp_frees
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 1112 .. c:member:: Py_ssize_t PyTypeObject.tp_frees
|