Searched refs:tp_allocs (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() 133 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, in get_counts() 176 tp->tp_allocs++; in inc_count() 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() 185 tp->tp_allocs == tp->tp_frees) { in dec_count() 333 --Py_TYPE(self)->tp_allocs; in PyObject_CallFinalizerFromDealloc()
|
/external/python/cpython2/Objects/ |
D | object.c | 98 tp->tp_name, tp->tp_allocs, tp->tp_frees, in dump_counts() 122 v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs, in get_counts() 165 tp->tp_allocs++; in inc_count() 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() 174 tp->tp_allocs == tp->tp_frees) { in dec_count()
|
D | genobject.c | 207 --self->ob_type->tp_allocs; in gen_del()
|
D | classobject.c | 702 --Py_TYPE(inst)->tp_allocs; in instance_dealloc()
|
D | typeobject.c | 5974 --Py_TYPE(self)->tp_allocs;
|
/external/python/cpython3/Misc/ |
D | SpecialBuilds.txt | 171 int tp_allocs; 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 | 167 int tp_allocs; 172 /* Highwater mark: the maximum value of tp_allocs - tp_frees so 201 (tp_name, tp_allocs, tp_frees, tp_maxalloc)
|
/external/python/cpython2/Modules/_io/ |
D | iobase.c | 260 --Py_TYPE(self)->tp_allocs; in _PyIOBase_finalize()
|
/external/python/cpython3/Include/ |
D | object.h | 429 Py_ssize_t tp_allocs; member
|
/external/python/cpython2/Include/ |
D | object.h | 405 Py_ssize_t tp_allocs; member
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 1050 .. c:member:: Py_ssize_t PyTypeObject.tp_allocs 1067 Pointer to the next type object with a non-zero :c:member:`~PyTypeObject.tp_allocs` field.
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 1107 .. c:member:: Py_ssize_t PyTypeObject.tp_allocs 1124 Pointer to the next type object with a non-zero :c:member:`~PyTypeObject.tp_allocs` field.
|
/external/python/cpython3/Modules/ |
D | _testcapimodule.c | 3232 --Py_TYPE(self)->tp_allocs; in slot_tp_del()
|