Lines Matching refs:f_stackdepth
302 assert(f->f_stackdepth >= 0); in frame_stack_pop()
303 f->f_stackdepth--; in frame_stack_pop()
304 PyObject *v = f->f_valuestack[f->f_stackdepth]; in frame_stack_pop()
311 assert(f->f_stackdepth >= 0); in frame_block_unwind()
315 intptr_t delta = f->f_stackdepth - b->b_level; in frame_block_unwind()
592 for (int i = 0; i < f->f_stackdepth; i++) { in frame_dealloc()
595 f->f_stackdepth = 0; in frame_dealloc()
653 for (int i = 0; i < f->f_stackdepth; i++) { in frame_traverse()
678 for (int i = 0; i < f->f_stackdepth; i++) { in frame_tp_clear()
681 f->f_stackdepth = 0; in frame_tp_clear()
849 f->f_stackdepth = 0; in _PyFrame_New_NoTrack()