Home
last modified time | relevance | path

Searched refs:numfree (Results 1 – 9 of 9) sorted by relevance

/third_party/python/Tools/c-analyzer/
Dignored-globals.txt158 numfree
163 numfree
172 numfree
176 numfree
186 numfree
190 numfree
197 numfree
DTODO93 Objects/dictobject.c:numfree static int numfree
97 Objects/floatobject.c:numfree static int numfree
99 Objects/frameobject.c:numfree static int numfree
105 Objects/listobject.c:numfree static int numfree
107 Objects/tupleobject.c:numfree static int numfree[PyTuple_MAXSAVE…
Dknown.tsv552 Objects/floatobject.c - numfree variable static int numfree
553 Objects/frameobject.c - numfree variable static int numfree
554 Objects/listobject.c - numfree variable static int numfree
555 Objects/dictobject.c - numfree variable static int numfree
556 Objects/methodobject.c - numfree variable static int numfree
557 Objects/tupleobject.c - numfree variable static int numfree[PyTuple_MAXSAVESIZE]
558 Objects/classobject.c - numfree variable static int numfree
/third_party/python/Objects/
Dtupleobject.c30 static int numfree[PyTuple_MAXSAVESIZE]; variable
51 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()
Dframeobject.c564 static int numfree = 0; /* number of frames currently in free_list */ variable
599 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()
Dfloatobject.c27 static int numfree = 0; variable
121 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()
Dlistobject.c105 static int numfree = 0; variable
110 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()
Ddictobject.c256 static int numfree = 0; variable
267 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()
/third_party/python/Doc/whatsnew/
D2.6.rst3078 ``numfree``, and a macro ``Py<typename>_MAXFREELIST`` is