| /vim-8.2.3635/src/ |
| H A D | blob.c | 286 varnumber_T n1, in blob_slice_or_index() argument 297 if (n1 < 0) in blob_slice_or_index() 299 n1 = len + n1; in blob_slice_or_index() 300 if (n1 < 0) in blob_slice_or_index() 301 n1 = 0; in blob_slice_or_index() 309 if (n1 >= len || n2 < 0 || n1 > n2) in blob_slice_or_index() 328 for (i = n1; i <= n2; i++) in blob_slice_or_index() 340 if (n1 < 0) in blob_slice_or_index() 341 n1 = len + n1; in blob_slice_or_index() 342 if (n1 < len && n1 >= 0) in blob_slice_or_index() [all …]
|
| H A D | typval.c | 1173 n1 = !n1; in typval_compare() 1190 n1 = !n1; in typval_compare() 1200 n1 = !n1; in typval_compare() 1218 n1 = !n1; in typval_compare() 1229 n1 = !n1; in typval_compare() 1247 n1 = !n1; in typval_compare() 1283 n1 = !n1; in typval_compare() 1324 case EXPR_EQUAL: n1 = (n1 == n2); break; in typval_compare() 1327 case EXPR_GREATER: n1 = (n1 > n2); break; in typval_compare() 1329 case EXPR_SMALLER: n1 = (n1 < n2); break; in typval_compare() [all …]
|
| H A D | list.c | 801 long *n1, in check_range_index_two() argument 820 if (*n1 < 0) in check_range_index_two() 822 if (*n2 < *n1) in check_range_index_two() 1133 for (item = list_find(ol, n1); n1 <= n2; ++n1) in list_slice() 1160 if (n1 < 0) in list_slice_or_index() 1161 n1 = len + n1; in list_slice_or_index() 1162 if (n1 < 0 || n1 >= len) in list_slice_or_index() 1174 n1 = n1 < 0 ? 0 : len; in list_slice_or_index() 1176 n1 = len; in list_slice_or_index() 1892 double n1, n2; in item_compare() local [all …]
|
| H A D | eval.c | 78 if (n1 == 0) in num_divide() 3058 n1 = n1 + n2; in eval5() 3060 n1 = n1 - n2; in eval5() 3147 n1 = 0; in eval6() 3242 n1 = n1 * n2; in eval6() 3244 n1 = num_divide(n1, n2, &failed); in eval6() 3246 n1 = num_modulus(n1, n2, &failed); in eval6() 4234 n1 = len + n1; in eval_index_inner() 4242 if (n1 >= len || n2 < 0 || n1 > n2) in eval_index_inner() 4245 s = vim_strnsave(s + n1, n2 - n1 + 1); in eval_index_inner() [all …]
|
| H A D | time.c | 144 long n1, n2; in list2proftime() local 150 n1 = list_find_nr(arg->vval.v_list, 0L, &error); in list2proftime() 153 tm->HighPart = n1; in list2proftime() 156 tm->tv_sec = n1; in list2proftime() 172 long n1, n2; in f_reltime() local 212 n1 = res.HighPart; in f_reltime() 215 n1 = res.tv_sec; in f_reltime() 218 list_append_number(rettv->vval.v_list, (varnumber_T)n1); in f_reltime()
|
| H A D | vim9execute.c | 2606 long n1; in exec_instructions() local 2639 n1, in exec_instructions() 2857 if (n1 < 0) in exec_instructions() 2870 && n2 < n1) in exec_instructions() 3847 n1 = 0; in exec_instructions() 3858 f1 = n1; 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() [all …]
|
| H A D | mbyte.c | 3616 size_t n1, in utf_strnicmp() argument 3674 n1--; in utf_strnicmp() 3678 if (n1 > 0 && *s1 == NUL) in utf_strnicmp() 3679 n1 = 0; in utf_strnicmp() 3683 if (n1 == 0 && n2 == 0) in utf_strnicmp() 3685 return n1 == 0 ? -1 : 1; in utf_strnicmp() 5544 varnumber_T n1; in f_setcellwidths() local 5562 if (n1 < 0x100) in f_setcellwidths() 5607 varnumber_T n1; in f_setcellwidths() local 5609 n1 = lili->li_tv.vval.v_number; in f_setcellwidths() [all …]
|
| H A D | evalvars.c | 1707 int n1 = n1_arg; in list_unlet_range() local 1709 while (li != NULL && (!has_n2 || n2 >= n1)) in list_unlet_range() 1714 ++n1; in list_unlet_range() 1719 n1 = n1_arg; in list_unlet_range() 1720 while (li != NULL && (!has_n2 || n2 >= n1)) in list_unlet_range() 1726 ++n1; in list_unlet_range()
|
| /vim-8.2.3635/src/xxd/ |
| H A D | xxd.c | 298 int c, ign_garb = 1, n1 = -1, n2 = 0, n3, p = cols; in huntype() local 315 n2 = n1; in huntype() 317 n1 = parse_hex_digit(c); in huntype() 318 if (n1 == -1 && ign_garb) in huntype() 325 if (n1 < 0) in huntype() 330 want_off = (want_off << 4) | n1; in huntype() 349 if (n2 >= 0 && n1 >= 0) in huntype() 351 if (putc((n2 << 4) | n1, fpo) == EOF) in huntype() 355 n1 = -1; in huntype() 360 else if (n1 < 0 && n2 < 0 && n3 < 0) in huntype()
|
| /vim-8.2.3635/src/proto/ |
| H A D | blob.pro | 17 int blob_slice_or_index(blob_T *blob, int is_range, varnumber_T n1, varnumber_T n2, int exclusive, … 18 int check_blob_index(long bloblen, varnumber_T n1, int quiet); 19 int check_blob_range(long bloblen, varnumber_T n1, varnumber_T n2, int quiet); 20 int blob_set_range(blob_T *dest, long n1, long n2, typval_T *src);
|
| H A D | list.pro | 33 listitem_T *check_range_index_one(list_T *l, long *n1, int quiet); 34 int check_range_index_two(list_T *l, long *n1, listitem_T *li1, long *n2, int quiet); 40 list_T *list_slice(list_T *ol, long n1, long n2);
|
| H A D | eval.pro | 2 varnumber_T num_divide(varnumber_T n1, varnumber_T n2, int *failed); 3 varnumber_T num_modulus(varnumber_T n1, varnumber_T n2, int *failed);
|
| /vim-8.2.3635/runtime/plugin/ |
| H A D | logiPat.vim | 246 let n1= s:LP_PatPop(1) 247 call s:LP_PatPush(s:LP_Not(n1)) 250 let n1= s:LP_PatPop(1) 252 call s:LP_PatPush(s:LP_Or(n2,n1)) 255 let n1= s:LP_PatPop(1) 257 call s:LP_PatPush(s:LP_And(n2,n1))
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_user_func.vim | 19 func Compute(n1, n2, divname) argument 23 exe "let g:" . a:divname . " = ". a:n1 / a:n2 478 \ .. "\n1 return len(self)" 494 \ .. "\n1 echo a:firstline"
|
| H A D | test_ex_equal.vim | 26 call assert_equal("\n1", a)
|
| H A D | test_messages.vim | 78 call assert_equal("\n1.23", execute(':echomsg 1.23')) 90 call assert_equal("\n1.23 IgNoRe", execute(':echoerr 1.23 "IgNoRe"'))
|
| H A D | test_ex_z.vim | 62 call assert_match("^\n1\n.*\n-\\+\n20\n-\\\+\n.*\n100$", a)
|
| H A D | test_execute_func.vim | 52 call assert_equal("\n0\n1\n2\n3", execute(l))
|
| H A D | test_popup.vim | 477 \ { 'word': 'January', 'info': "info1-1\n1-2\n1-3" }, 789 \ ' n1 = "yes",', 793 \ 'struct = {one = 1, nested = {n1 = "yes", n2 = "no"} two = 2}'))
|
| H A D | test_lambda.vim | 252 \ .. "\n1 let x += 1"
|
| /vim-8.2.3635/runtime/spell/en/ |
| H A D | en_CA.diff | 190 ! 1/n1
|
| H A D | en_US.diff | 195 ! 1/n1
|
| /vim-8.2.3635/runtime/keymap/ |
| H A D | oldturkic-orkhon_utf-8.vim | 77 n1 10C23 OLD TURKIC LETTER ORKHON AN
|
| H A D | oldturkic-yenisei_utf-8.vim | 86 n1 10C23 OLD TURKIC LETTER ORKHON AN
|
| /vim-8.2.3635/ |
| H A D | .travis.yml | 110 …- (cd "${PYENV_ROOT}" && git fetch -p origin && git checkout "$(git rev-list --tags -n1)") &>/dev/…
|