Lines Matching refs:pt

4045 	    partial_T	*pt = ALLOC_CLEAR_ONE(partial_T);  in common_function()  local
4048 if (pt == NULL) in common_function()
4063 pt->pt_argc = arg_len + lv_len; in common_function()
4064 pt->pt_argv = ALLOC_MULT(typval_T, pt->pt_argc); in common_function()
4065 if (pt->pt_argv == NULL) in common_function()
4067 vim_free(pt); in common_function()
4072 copy_tv(&arg_pt->pt_argv[i], &pt->pt_argv[i]); in common_function()
4077 copy_tv(&li->li_tv, &pt->pt_argv[i++]); in common_function()
4086 pt->pt_dict = argvars[dict_idx].vval.v_dict; in common_function()
4087 ++pt->pt_dict->dv_refcount; in common_function()
4093 pt->pt_dict = arg_pt->pt_dict; in common_function()
4094 pt->pt_auto = arg_pt->pt_auto; in common_function()
4095 if (pt->pt_dict != NULL) in common_function()
4096 ++pt->pt_dict->dv_refcount; in common_function()
4099 pt->pt_refcount = 1; in common_function()
4102 pt->pt_func = arg_pt->pt_func; in common_function()
4103 func_ptr_ref(pt->pt_func); in common_function()
4108 pt->pt_func = find_func(trans_name, is_global, NULL); in common_function()
4109 func_ptr_ref(pt->pt_func); in common_function()
4114 pt->pt_name = name; in common_function()
4119 rettv->vval.v_partial = pt; in common_function()
4231 partial_T *pt; in f_get() local
4235 pt = argvars[0].vval.v_partial; in f_get()
4240 pt = &fref_pt; in f_get()
4243 if (pt != NULL) in f_get()
4251 n = partial_name(pt); in f_get()
4264 if (pt->pt_dict != NULL) in f_get()
4265 rettv_dict_set(rettv, pt->pt_dict); in f_get()
4274 for (i = 0; i < pt->pt_argc; ++i) in f_get()
4275 list_append_tv(rettv->vval.v_list, &pt->pt_argv[i]); in f_get()