Lines Matching refs:PyTuple_MAXSAVESIZE
7 #ifndef PyTuple_MAXSAVESIZE
8 #define PyTuple_MAXSAVESIZE 20 /* Largest tuple to save on free list */ macro
14 #if PyTuple_MAXSAVESIZE > 0
18 static PyTupleObject *free_list[PyTuple_MAXSAVESIZE];
19 static int numfree[PyTuple_MAXSAVESIZE];
57 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_New()
66 if (size < PyTuple_MAXSAVESIZE && (op = free_list[size]) != NULL) { in PyTuple_New()
96 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_New()
223 #if PyTuple_MAXSAVESIZE > 0 in tupledealloc()
224 if (len < PyTuple_MAXSAVESIZE && in tupledealloc()
891 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_ClearFreeList()
893 for (i = 1; i < PyTuple_MAXSAVESIZE; i++) { in PyTuple_ClearFreeList()
912 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_Fini()