Searched refs:PyTuple_MAXSAVESIZE (Results 1 – 4 of 4) sorted by relevance
18 #ifndef PyTuple_MAXSAVESIZE19 #define PyTuple_MAXSAVESIZE 20 /* Largest tuple to save on free list */ macro25 #if PyTuple_MAXSAVESIZE > 029 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()[all …]
7 #ifndef PyTuple_MAXSAVESIZE8 #define PyTuple_MAXSAVESIZE 20 /* Largest tuple to save on free list */ macro14 #if PyTuple_MAXSAVESIZE > 018 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()[all …]
106 …t.c:free_list static PyTupleObject *free_list[PyTuple_MAXSAVESIZE]107 …ts/tupleobject.c:numfree static int numfree[PyTuple_MAXSAVESIZE]
296 Objects/tupleobject.c - free_list variable static PyTupleObject *free_list[PyTuple_MAXSAVESIZE]557 Objects/tupleobject.c - numfree variable static int numfree[PyTuple_MAXSAVESIZE]