Home
last modified time | relevance | path

Searched refs:PyList_MAXFREELIST (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Include/internal/
H A Dpycore_list.h23 # define PyList_MAXFREELIST 0 macro
27 #ifndef PyList_MAXFREELIST
28 # define PyList_MAXFREELIST 80 macro
32 #if PyList_MAXFREELIST > 0
33 PyListObject *free_list[PyList_MAXFREELIST];
/third_party/python/Objects/
H A Dlistobject.c20 #if PyList_MAXFREELIST > 0
122 #if PyList_MAXFREELIST > 0 in _PyList_ClearFreeList()
136 #if defined(Py_DEBUG) && PyList_MAXFREELIST > 0 in _PyList_Fini()
146 #if PyList_MAXFREELIST > 0 in _PyList_DebugMallocStats()
164 #if PyList_MAXFREELIST > 0 in PyList_New()
170 if (PyList_MAXFREELIST && state->numfree) { in PyList_New()
361 #if PyList_MAXFREELIST > 0 in list_dealloc()
367 if (state->numfree < PyList_MAXFREELIST && PyList_CheckExact(op)) { in list_dealloc()

Completed in 5 milliseconds