Lines Matching refs:ctx_locals
182 garray_T ctx_locals; // currently visible local variables member
224 for (idx = 0; idx < cctx->ctx_locals.ga_len; ++idx) in lookup_local()
226 lvp = ((lvar_T *)cctx->ctx_locals.ga_data) + idx; in lookup_local()
2463 if (GA_GROW_FAILS(&cctx->ctx_locals, 1)) in reserve_local()
2465 lvar = ((lvar_T *)cctx->ctx_locals.ga_data) + cctx->ctx_locals.ga_len++; in reserve_local()
2495 if (cctx->ctx_locals.ga_len > new_top) in unwind_locals()
2500 for (idx = new_top; idx < cctx->ctx_locals.ga_len; ++idx) in unwind_locals()
2502 lvar = ((lvar_T *)cctx->ctx_locals.ga_data) + idx; in unwind_locals()
2506 cctx->ctx_locals.ga_len = new_top; in unwind_locals()
2516 ga_clear(&cctx->ctx_locals); in free_locals()
7081 --cctx->ctx_locals.ga_len; in compile_assignment()
7086 ++cctx->ctx_locals.ga_len; in compile_assignment()
7091 ++cctx->ctx_locals.ga_len; in compile_assignment()
7646 scope->se_local_count = cctx->ctx_locals.ga_len; in new_scope()
9607 ga_init2(&cctx.ctx_locals, sizeof(lvar_T), 10); in compile_def_function()