Lines Matching refs:tv1

3568 		    typval_T	*tv1 = STACK_TV_BOT(-2);  in exec_instructions()  local
3570 varnumber_T arg1 = tv1->vval.v_number; in exec_instructions()
3582 tv1->v_type = VAR_BOOL; in exec_instructions()
3583 tv1->vval.v_number = res ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3591 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3593 varnumber_T arg1 = tv1->vval.v_number; in exec_instructions()
3626 tv1->v_type = VAR_BOOL; in exec_instructions()
3627 tv1->vval.v_number = res ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3630 tv1->vval.v_number = res; in exec_instructions()
3645 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3647 float_T arg1 = tv1->vval.v_float; in exec_instructions()
3670 tv1->v_type = VAR_BOOL; in exec_instructions()
3671 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3674 tv1->vval.v_float = res; in exec_instructions()
3681 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3683 list_T *arg1 = tv1->vval.v_list; in exec_instructions()
3699 clear_tv(tv1); in exec_instructions()
3701 tv1->v_type = VAR_BOOL; in exec_instructions()
3702 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3708 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3710 blob_T *arg1 = tv1->vval.v_blob; in exec_instructions()
3723 clear_tv(tv1); in exec_instructions()
3725 tv1->v_type = VAR_BOOL; in exec_instructions()
3726 tv1->vval.v_number = cmp ? VVAL_TRUE : VVAL_FALSE; in exec_instructions()
3736 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3742 typval_compare(tv1, tv2, exprtype, ic); in exec_instructions()
3751 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3758 && tv1->vval.v_list != NULL) in exec_instructions()
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()
3773 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3775 list_T *l = tv1->vval.v_list; in exec_instructions()
3793 typval_T *tv1 = STACK_TV_BOT(-2); in exec_instructions() local
3795 blob_T *b = tv1->vval.v_blob; in exec_instructions()
3817 typval_T *tv1 = STACK_TV_BOT(-2); 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()
3834 else if (tv1->v_type == VAR_BLOB in exec_instructions()
3837 eval_addblob(tv1, tv2); in exec_instructions()
3844 if (tv1->v_type == VAR_FLOAT) in exec_instructions()
3846 f1 = tv1->vval.v_float; in exec_instructions()
3853 n1 = tv_get_number_chk(tv1, &error); in exec_instructions()
3874 if (tv1->v_type == VAR_FLOAT) in exec_instructions()
3880 if (tv1->v_type == VAR_FLOAT || tv2->v_type == VAR_FLOAT) in exec_instructions()
3892 clear_tv(tv1); in exec_instructions()
3894 tv1->v_type = VAR_FLOAT; in exec_instructions()
3895 tv1->vval.v_float = f1; in exec_instructions()
3917 clear_tv(tv1); in exec_instructions()
3919 tv1->v_type = VAR_NUMBER; in exec_instructions()
3920 tv1->vval.v_number = n1; in exec_instructions()