Searched refs:numfree (Results 1 – 9 of 9) sorted by relevance
158 numfree163 numfree172 numfree176 numfree186 numfree190 numfree197 numfree
93 Objects/dictobject.c:numfree static int numfree97 Objects/floatobject.c:numfree static int numfree99 Objects/frameobject.c:numfree static int numfree105 Objects/listobject.c:numfree static int numfree107 Objects/tupleobject.c:numfree static int numfree[PyTuple_MAXSAVE…
552 Objects/floatobject.c - numfree variable static int numfree553 Objects/frameobject.c - numfree variable static int numfree554 Objects/listobject.c - numfree variable static int numfree555 Objects/dictobject.c - numfree variable static int numfree556 Objects/methodobject.c - numfree variable static int numfree557 Objects/tupleobject.c - numfree variable static int numfree[PyTuple_MAXSAVESIZE]558 Objects/classobject.c - numfree variable static int numfree
30 static int numfree[PyTuple_MAXSAVESIZE]; variable51 numfree[i], _PyObject_VAR_SIZE(&PyTuple_Type, i)); in _PyTuple_DebugMallocStats()76 numfree[size]--; in tuple_alloc()120 ++numfree[0]; in PyTuple_New()240 numfree[len] < PyTuple_MAXFREELIST && in tupledealloc()244 numfree[len]++; in tupledealloc()967 numfree[i] = 0; in _PyTuple_ClearFreeList()
564 static int numfree = 0; /* number of frames currently in free_list */ variable599 else if (numfree < PyFrame_MAXFREELIST) { in frame_dealloc()600 ++numfree; in frame_dealloc()795 assert(numfree > 0); in frame_alloc()796 --numfree; in frame_alloc()1185 --numfree; in _PyFrame_ClearFreeList()1187 assert(numfree == 0); in _PyFrame_ClearFreeList()1204 numfree, sizeof(PyFrameObject)); in _PyFrame_DebugMallocStats()
27 static int numfree = 0; variable121 numfree--; in PyFloat_FromDouble()220 if (numfree >= PyFloat_MAXFREELIST) { in float_dealloc()224 numfree++; in float_dealloc()1990 numfree = 0; in _PyFloat_ClearFreeList()2005 numfree, sizeof(PyFloatObject)); in _PyFloat_DebugMallocStats()
105 static int numfree = 0; variable110 while (numfree) { in _PyList_ClearFreeList()111 PyListObject *op = free_list[--numfree]; in _PyList_ClearFreeList()129 numfree, sizeof(PyListObject)); in _PyList_DebugMallocStats()141 if (numfree) { in PyList_New()142 numfree--; in PyList_New()143 op = free_list[numfree]; in PyList_New()340 if (numfree < PyList_MAXFREELIST && PyList_CheckExact(op)) in list_dealloc()341 free_list[numfree++] = op; in list_dealloc()
256 static int numfree = 0; variable267 while (numfree) { in _PyDict_ClearFreeList()268 PyDictObject *op = free_list[--numfree]; in _PyDict_ClearFreeList()284 "free PyDictObject", numfree, sizeof(PyDictObject)); in _PyDict_DebugMallocStats()619 if (numfree) { in new_dict()620 mp = free_list[--numfree]; in new_dict()2029 if (numfree < PyDict_MAXFREELIST && Py_IS_TYPE(mp, &PyDict_Type)) { in dict_dealloc()2030 free_list[numfree++] = mp; in dict_dealloc()
3078 ``numfree``, and a macro ``Py<typename>_MAXFREELIST`` is