Lines Matching refs:STATE
1170 #define STATE (interp->tuple)
1171 #define FREELIST_FINALIZED (STATE.numfree[0] < 0)
1188 PyTupleObject *op = STATE.free_list[index];
1192 STATE.free_list[index] = (PyTupleObject *) op->ob_item[0];
1193 STATE.numfree[index]--;
1225 && STATE.numfree[index] < PyTuple_MAXFREELIST
1230 op->ob_item[0] = (PyObject *) STATE.free_list[index];
1231 STATE.free_list[index] = op;
1232 STATE.numfree[index]++;
1245 PyTupleObject *p = STATE.free_list[i];
1246 STATE.free_list[i] = NULL;
1247 STATE.numfree[i] = fini ? -1 : 0;
1268 _PyDebugAllocatorStats(out, buf, STATE.numfree[i],
1274 #undef STATE