Lines Matching defs:stack
98 PyThreadState *tstate, PyObject *callable, PyObject **stack,
111 printf(" stack=[");
853 Py_FatalError("Cannot recover from stack overflow.");
1433 /* The stack can grow at most MAXINT deep, as co_nlocals and
1661 /* WARNING: Because the _PyCFrame lives on the C stack,
1663 * strict stack discipline must be maintained.
2076 * the stack, one in the locals), DECREFing `left` leaves
3916 /* Total or partial match - update the stack from
4437 /* At the top of the stack are 4 values:
4455 PyObject *stack[4] = {NULL, exc, val, tb};
4456 res = PyObject_Vectorcall(exit_func, stack + 1,
4511 the second element of the stack to NULL, to signal
4687 /* Move ownership of reference from stack to call_shape
4688 * and make sure that NULL is cleared from stack */
4753 // The frame has stolen all the arguments from the stack,
4782 /* Clear the stack */
5332 /* Clear the stack of the arguments. */
5776 /* Pop remaining stack entries. */
6679 /* Iterate v argcnt times and store the results on the stack (via decreasing
7413 PyObject* stack[5];
7440 stack[0] = name;
7441 stack[1] = frame->f_globals;
7442 stack[2] = locals == NULL ? Py_None : locals;
7443 stack[3] = fromlist;
7444 stack[4] = level;
7445 res = _PyObject_FastCall(import_func, stack, 5);