Home
last modified time | relevance | path

Searched refs:f_valuestack (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Objects/
Dframeobject.c304 PyObject *v = f->f_valuestack[f->f_stackdepth]; in frame_stack_pop()
586 PyObject **valuestack = f->f_valuestack; in frame_dealloc()
593 Py_XDECREF(f->f_valuestack[i]); in frame_dealloc()
654 Py_VISIT(f->f_valuestack[i]); in frame_traverse()
679 Py_CLEAR(f->f_valuestack[i]); in frame_tp_clear()
820 f->f_valuestack = f->f_localsplus + extras; in frame_alloc()
Dgenobject.c196 gen->gi_frame->f_valuestack[gen->gi_frame->f_stackdepth] = result; in gen_send_ex2()
361 yf = f->f_valuestack[f->f_stackdepth-1]; in _PyGen_yf()
477 ret = gen->gi_frame->f_valuestack[gen->gi_frame->f_stackdepth]; in _gen_throw()
/third_party/python/Include/cpython/
Dframeobject.h35 PyObject **f_valuestack; /* points after the last local */ member
/third_party/python/Python/
Dceval.c1391 #define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack))
1693 stack_pointer = f->f_valuestack + f->f_stackdepth; in _PyEval_EvalFrameDefault()
1741 assert(stack_pointer >= f->f_valuestack); /* else underflow */ in _PyEval_EvalFrameDefault()
1797 f->f_stackdepth = (int)(stack_pointer - f->f_valuestack); in _PyEval_EvalFrameDefault()
1805 stack_pointer = f->f_valuestack+f->f_stackdepth; in _PyEval_EvalFrameDefault()
2629 f->f_stackdepth = (int)(stack_pointer - f->f_valuestack); in _PyEval_EvalFrameDefault()
2646 f->f_stackdepth = (int)(stack_pointer - f->f_valuestack); in _PyEval_EvalFrameDefault()