Lines Matching refs:stack
243 PyObject **stack;
246 stack = small_stack;
249 stack = PyMem_Malloc(newnargs_total * sizeof(PyObject *));
250 if (stack == NULL) {
256 /* Copy to new stack, using borrowed references */
257 memcpy(stack, pto_args, pto_nargs * sizeof(PyObject*));
258 memcpy(stack + pto_nargs, args, nargs_total * sizeof(PyObject*));
261 stack, pto_nargs + nargs, kwnames);
262 if (stack != small_stack) {
263 PyMem_Free(stack);
598 PyObject* stack[2];
616 stack[0] = x;
617 stack[1] = y;
618 res = _PyObject_FastCall(compare, stack, 2);