Home
last modified time | relevance | path

Searched refs:PyTuple_MAXSAVESIZE (Results 1 – 3 of 3) sorted by relevance

/third_party/python/Include/internal/
Dpycore_interp.h91 #ifndef PyTuple_MAXSAVESIZE
93 # define PyTuple_MAXSAVESIZE 20 macro
101 #if PyTuple_MAXSAVESIZE > 0
105 PyTupleObject *free_list[PyTuple_MAXSAVESIZE];
106 int numfree[PyTuple_MAXSAVESIZE];
/third_party/python/Objects/
Dtupleobject.c18 #if PyTuple_MAXSAVESIZE > 0
39 #if PyTuple_MAXSAVESIZE > 0 in _PyTuple_DebugMallocStats()
41 for (int i = 1; i < PyTuple_MAXSAVESIZE; i++) { in _PyTuple_DebugMallocStats()
63 #if PyTuple_MAXSAVESIZE > 0 in tuple_alloc()
73 #if PyTuple_MAXSAVESIZE > 0 in tuple_alloc()
79 if (size < PyTuple_MAXSAVESIZE && (op = state->free_list[size]) != NULL) { in tuple_alloc()
108 #if PyTuple_MAXSAVESIZE > 0 in tuple_create_empty_tuple_singleton()
130 #if PyTuple_MAXSAVESIZE > 0 in tuple_get_empty()
152 #if PyTuple_MAXSAVESIZE > 0 in PyTuple_New()
278 #if PyTuple_MAXSAVESIZE > 0 in tupledealloc()
[all …]
/third_party/python/Tools/c-analyzer/
DTODO103 …t.c:free_list static PyTupleObject *free_list[PyTuple_MAXSAVESIZE]
104 …ts/tupleobject.c:numfree static int numfree[PyTuple_MAXSAVESIZE]