Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dframeobject.c355 while ((f->f_stacktop - f->f_valuestack) > b->b_level) { in frame_setlineno()
468 valuestack = f->f_valuestack; in frame_dealloc()
520 for (p = f->f_valuestack; p < f->f_stacktop; p++) in frame_traverse()
551 for (p = f->f_valuestack; p < oldtop; p++) in frame_tp_clear()
739 f->f_valuestack = f->f_localsplus + extras; in _PyFrame_New_NoTrack()
745 f->f_stacktop = f->f_valuestack; in _PyFrame_New_NoTrack()
/external/python/cpython2/Objects/
Dframeobject.c370 while ((f->f_stacktop - f->f_valuestack) > b->b_level) { in frame_setlineno()
492 valuestack = f->f_valuestack; in frame_dealloc()
550 for (p = f->f_valuestack; p < f->f_stacktop; p++) in frame_traverse()
583 for (p = f->f_valuestack; p < oldtop; p++) in frame_clear()
740 f->f_valuestack = f->f_localsplus + extras; in PyFrame_New()
747 f->f_stacktop = f->f_valuestack; in PyFrame_New()
/external/python/cpython2/Include/
Dframeobject.h23 PyObject **f_valuestack; /* points after the last local */ member
/external/python/cpython3/Include/
Dframeobject.h24 PyObject **f_valuestack; /* points after the last local */ member
/external/python/cpython3/Python/
Dceval.c755 #define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack)) in _PyEval_EvalFrameDefault()
931 assert(stack_pointer >= f->f_valuestack); /* else underflow */ in _PyEval_EvalFrameDefault()
/external/python/cpython2/Python/
Dceval.c926 #define STACK_LEVEL() ((int)(stack_pointer - f->f_valuestack)) in PyEval_EvalFrameEx()
1083 assert(stack_pointer >= f->f_valuestack); /* else underflow */ in PyEval_EvalFrameEx()