Lines Matching refs:n2

2607 			long	n2;  in exec_instructions()  local
2618 n2 = list_len(tv_dest->vval.v_list) - 1; in exec_instructions()
2620 n2 = (long)tv_get_number_chk(tv_idx2, &error); in exec_instructions()
2634 &n1, li1, &n2, FALSE); in exec_instructions()
2640 n2, in exec_instructions()
2651 varnumber_T n2; in exec_instructions() local
2661 n2 = blob_len(tv_dest->vval.v_blob) - 1; in exec_instructions()
2663 n2 = tv_get_number_chk(tv_idx2, &error); in exec_instructions()
2673 n1, n2, FALSE) == FAIL) in exec_instructions()
2677 tv_dest->vval.v_blob, n1, n2, tv); in exec_instructions()
2848 long n2 = tv_idx2->v_type == VAR_SPECIAL in exec_instructions() local
2859 if (n2 < 0) in exec_instructions()
2861 listitem_T *li2 = list_find(l, n2); in exec_instructions()
2866 n2 = list_idx_of_item(l, li2); in exec_instructions()
2870 && n2 < n1) in exec_instructions()
2872 semsg(_(e_listidx), n2); in exec_instructions()
2877 tv_idx2->v_type != VAR_SPECIAL, n2) in exec_instructions()
3819 varnumber_T n1, n2; in exec_instructions() local
3865 n2 = 0; in exec_instructions()
3870 n2 = tv_get_number_chk(tv2, &error); in exec_instructions()
3875 f2 = n2; in exec_instructions()
3905 case EXPR_MULT: n1 = n1 * n2; break; in exec_instructions()
3906 case EXPR_DIV: n1 = num_divide(n1, n2, &failed); in exec_instructions()
3910 case EXPR_SUB: n1 = n1 - n2; break; in exec_instructions()
3911 case EXPR_ADD: n1 = n1 + n2; break; in exec_instructions()
3912 default: n1 = num_modulus(n1, n2, &failed); in exec_instructions()
3944 varnumber_T n1 = 0, n2; in exec_instructions() local
3957 n2 = tv->vval.v_number; in exec_instructions()
3963 res = string_slice(tv->vval.v_string, n1, n2, FALSE); in exec_instructions()
3969 res = char_from_string(tv->vval.v_string, n2); in exec_instructions()
3984 varnumber_T n1, n2; in exec_instructions() local
3994 n1 = n2 = tv->vval.v_number; in exec_instructions()
4010 n1, n2, FALSE, tv) == FAIL) in exec_instructions()
4016 n1, n2, FALSE, tv, TRUE) == FAIL) in exec_instructions()