Lines Matching refs:tv2

3569 		    typval_T	*tv2 = STACK_TV_BOT(-1);  in exec_instructions()  local
3571 varnumber_T arg2 = tv2->vval.v_number; in exec_instructions()
3592 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3594 varnumber_T arg2 = tv2->vval.v_number; in exec_instructions()
3646 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3648 float_T arg2 = tv2->vval.v_float; in exec_instructions()
3682 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3684 list_T *arg2 = tv2->vval.v_list; in exec_instructions()
3700 clear_tv(tv2); in exec_instructions()
3709 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3711 blob_T *arg2 = tv2->vval.v_blob; in exec_instructions()
3724 clear_tv(tv2); in exec_instructions()
3737 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3742 typval_compare(tv1, tv2, exprtype, ic); in exec_instructions()
3743 clear_tv(tv2); in exec_instructions()
3752 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3759 list_extend(tv1->vval.v_list, tv2->vval.v_list, in exec_instructions()
3762 eval_addlist(tv1, tv2); in exec_instructions()
3765 eval_addblob(tv1, tv2); in exec_instructions()
3766 clear_tv(tv2); in exec_instructions()
3774 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3784 if (list_append_tv(l, tv2) == FAIL) in exec_instructions()
3786 clear_tv(tv2); in exec_instructions()
3794 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3806 n = tv_get_number_chk(tv2, &error); in exec_instructions()
3818 typval_T *tv2 = STACK_TV_BOT(-1); in exec_instructions() local
3827 if (tv1->v_type == VAR_LIST && tv2->v_type == VAR_LIST) in exec_instructions()
3829 eval_addlist(tv1, tv2); in exec_instructions()
3830 clear_tv(tv2); in exec_instructions()
3835 && tv2->v_type == VAR_BLOB) in exec_instructions()
3837 eval_addblob(tv1, tv2); in exec_instructions()
3838 clear_tv(tv2); in exec_instructions()
3857 if (tv2->v_type == VAR_FLOAT) in exec_instructions()
3862 if (tv2->v_type == VAR_FLOAT) in exec_instructions()
3864 f2 = tv2->vval.v_float; in exec_instructions()
3870 n2 = tv_get_number_chk(tv2, &error); in exec_instructions()
3880 if (tv1->v_type == VAR_FLOAT || tv2->v_type == VAR_FLOAT) in exec_instructions()
3893 clear_tv(tv2); in exec_instructions()
3918 clear_tv(tv2); in exec_instructions()