| /vim-8.2.3635/src/testdir/ |
| H A D | test_search_stat.vim | 19 \ #{current: 1, exact_match: 1, total: 40, incomplete: 0, maxcount: 99}, 22 \ #{current: 0, exact_match: 0, total: 10, incomplete: 0, maxcount: 99}, 25 \ #{current: 0, exact_match: 0, total: 10, incomplete: 0, maxcount: 99}, 28 \ #{current: 1, exact_match: 1, total: 10, incomplete: 0, maxcount: 99}, 32 \ #{current: 1, exact_match: 1, total: 10, incomplete: 0, maxcount: 99}, 36 \ #{current: 1, exact_match: 0, total: 10, incomplete: 0, maxcount: 99}, 39 \ #{current: 1, exact_match: 0, total: 10, incomplete: 0, maxcount: 99}, 42 \ #{current: 1, exact_match: 0, total: 2, incomplete: 2, maxcount: 1}, 45 \ #{current: 0, exact_match: 0, total: 2, incomplete: 2, maxcount: 1}, 56 \ #{current: 2, exact_match: 1, total: 50, incomplete: 0, maxcount: 99}, [all …]
|
| H A D | test_profile.vim | 74 call assert_equal('count total (s) self (s)', lines[6]) 81 call assert_equal('count total (s) self (s)', lines[14]) 89 call assert_equal('count total (s) self (s) function', lines[22]) 94 call assert_equal('count total (s) self (s) function', lines[27]) 385 " if self and total are equal we only get one number 388 " if self and total are equal we only get one number 421 call assert_equal('count total (s) self (s)', lines[5]) 611 var total = 0 618 total += nr 624 assert_equal(3, total) [all …]
|
| H A D | test_regexp_utf8.vim | 524 call assert_equal(4, searchcount().total, 'TEST 1') 527 call assert_equal(2, searchcount().total, 'TEST 1') 530 call assert_equal(4, searchcount().total, 'TEST 1') 536 call assert_equal(2, searchcount().total, 'TEST 2') 539 call assert_equal(1, searchcount().total, 'TEST 2') 542 call assert_equal(2, searchcount().total, 'TEST 2') 548 call assert_equal(4, searchcount().total, 'TEST 3 lower') 551 call assert_equal(2, searchcount().total, 'TEST 3 lower') 554 call assert_equal(4, searchcount().total, 'TEST 3 lower')
|
| H A D | test_put.vim | 153 " total put-length (21474837 * 100) brings 32 bit int overflow 172 " total put-length (21474837 * 100) brings 32 bit int overflow
|
| H A D | test_vim9_script.vim | 2699 var total = 0 2702 total += nr 2706 total = 0 2709 total += nr 2713 total = 0 2717 total += nr 2722 total = 0 2724 total += n 2877 var total = 0 2883 total = 0 [all …]
|
| H A D | test_matchfuzzy.vim | 40 " total non-matching letter(s) penalty 188 " total non-matching letter(s) penalty
|
| H A D | test_cpoptions.vim | 91 call assert_equal(3, searchcount().total) 94 call assert_equal(5, searchcount().total)
|
| /vim-8.2.3635/src/ |
| H A D | sha256.c | 46 ctx->total[0] = 0; in sha256_start() 47 ctx->total[1] = 0; in sha256_start() 199 left = ctx->total[0] & 0x3F; in sha256_update() 202 ctx->total[0] += length; in sha256_update() 203 ctx->total[0] &= 0xFFFFFFFF; in sha256_update() 205 if (ctx->total[0] < length) in sha256_update() 206 ctx->total[1]++; in sha256_update() 242 high = (ctx->total[0] >> 29) | (ctx->total[1] << 3); in sha256_finish() 243 low = (ctx->total[0] << 3); in sha256_finish() 248 last = ctx->total[0] & 0x3F; in sha256_finish()
|
| H A D | profiler.c | 232 profile_self(proftime_T *self, proftime_T *total, proftime_T *children) in profile_self() argument 237 if (total->QuadPart <= children->QuadPart) in profile_self() 240 if (total->tv_sec < children->tv_sec in profile_self() 241 || (total->tv_sec == children->tv_sec in profile_self() 242 && total->tv_usec <= children->tv_usec)) in profile_self() 245 profile_add(self, total); in profile_self() 454 proftime_T *total, in prof_func_line() argument 461 if (prefer_self && profile_equal(total, self)) in prof_func_line() 464 fprintf(fd, "%s ", profile_msg(total)); in prof_func_line() 465 if (!prefer_self && profile_equal(total, self)) in prof_func_line()
|
| H A D | ops.c | 281 int total; in shift_block() local 303 total = (int)((unsigned)amount * (unsigned)sw_val); in shift_block() 304 if ((total / sw_val) != amount) in shift_block() 339 total += incr; in shift_block() 346 tabstop_fromto(ws_vcol, ws_vcol + total, in shift_block() 349 j = total; in shift_block() 352 i = ((ws_vcol % ts_val) + total) / ts_val; // number of tabs in shift_block() 354 j = ((ws_vcol % ts_val) + total) % ts_val; // number of spp in shift_block() 356 j = total; in shift_block() 412 shift_amount = (block_space_width < (size_t)total in shift_block() [all …]
|
| H A D | syntax.c | 3202 profile_add(&st->total, &pt); in syn_regexec() 6641 profile_zero(&st->total); in syn_clear_time() 6687 proftime_T total; member 6702 return profile_cmp(&s1->total, &s2->total); in syn_compare_syntime() 6737 p->total = spp->sp_time.total; in syntime_report() 6738 profile_add(&total_total, &spp->sp_time.total); in syntime_report() 6744 profile_divide(&spp->sp_time.total, spp->sp_time.count, &tm); in syntime_report() 6765 msg_puts(profile_msg(&p->total)); in syntime_report()
|
| H A D | window.c | 6606 int total; in min_rows() local 6613 total = 0; in min_rows() 6617 if (total < n) in min_rows() 6618 total = n; in min_rows() 6620 total += tabline_height(); in min_rows() 6621 total += 1; // count the room for the command line in min_rows() 6622 return total; in min_rows()
|
| H A D | spellsuggest.c | 1118 proftime_T total; 1131 profile_start(&total); 1150 profile_end(&total); 1152 fprintf(fd, "%s: %s\n", name, profile_msg(&total));
|
| H A D | os_unix.c | 590 long total = msec; // remember original value in mch_delay() local 617 if (total > p_mzq) in mch_delay() 620 msec = total; in mch_delay() 621 total -= msec; in mch_delay() 657 while (total > 0); in mch_delay()
|
| H A D | structs.h | 2506 proftime_T total; // total time used member 4103 UINT32_T total[2]; member
|
| /vim-8.2.3635/runtime/syntax/ |
| H A D | lftp.vim | 119 \ limit-r[ate] limit-total-m[ax] 120 \ limit-total-r[ate] max-ret[ries] no-[proxy]
|
| H A D | gprof.vim | 24 \ start="^\s*%\s\+the percentage of the total running time.*"
|
| H A D | samba.vim | 83 syn keyword sambaKeyword contained total vfs winbind wizard
|
| H A D | initex.vim | 184 \ '\\page\%(depth\|fil\{1,3}stretch\|goal\|shrink\|stretch\|total\)\>'
|
| H A D | ada.vim | 46 " There are 72 reserved words in total in Ada2005. Some keywords are
|
| H A D | dtml.vim | 99 syn keyword dtmlAttribute title_and_id title_or_id total- tpURL tpValues TRACE translate tree-c con…
|
| /vim-8.2.3635/src/proto/ |
| H A D | profiler.pro | 12 void profile_self(proftime_T *self, proftime_T *total, proftime_T *children);
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_24.txt | 127 total = ch_array[0] + ch_array[1] + ch_array[2]; ~ 131 total = ch_array[0] + ch_ ~ 138 total = ch_array[0] + ch_array ~ 142 total = ch_array[0] + ch_array[1] + ~ 147 gives you the next word that matches, in this case "total". A third CTRL-P
|
| H A D | sponsor.txt | 53 Additionally, once you have sent 100 euro or more in total, your name appears 100 If you send 100 Euro or more in total you will be mentioned on the "Vim hall
|
| H A D | if_mzsch.txt | 222 (buff-count) Get count of total buffers in the editor.
|