Lines Matching refs:PyTuple_MAXSAVESIZE
18 #ifndef PyTuple_MAXSAVESIZE
19 #define PyTuple_MAXSAVESIZE 20 /* Largest tuple to save on free list */ macro
25 #if PyTuple_MAXSAVESIZE > 0
29 static PyTupleObject *free_list[PyTuple_MAXSAVESIZE];
30 static int numfree[PyTuple_MAXSAVESIZE];
43 #if PyTuple_MAXSAVESIZE > 0 in _PyTuple_DebugMallocStats()
46 for (i = 1; i < PyTuple_MAXSAVESIZE; i++) { in _PyTuple_DebugMallocStats()
72 #if PyTuple_MAXSAVESIZE > 0 in tuple_alloc()
73 if (size < PyTuple_MAXSAVESIZE && (op = free_list[size]) != NULL) { in tuple_alloc()
103 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_New()
117 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_New()
238 #if PyTuple_MAXSAVESIZE > 0 in tupledealloc()
239 if (len < PyTuple_MAXSAVESIZE && in tupledealloc()
251 #if PyTuple_MAXSAVESIZE > 0 in tupledealloc()
963 #if PyTuple_MAXSAVESIZE > 0 in _PyTuple_ClearFreeList()
964 for (Py_ssize_t i = 1; i < PyTuple_MAXSAVESIZE; i++) { in _PyTuple_ClearFreeList()
981 #if PyTuple_MAXSAVESIZE > 0 in _PyTuple_Fini()