Home
last modified time | relevance | path

Searched refs:totlen (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/src/
H A Dusercmd.c1667 size_t len, totlen; in do_ucmd() local
1689 totlen = 0; in do_ucmd()
1734 totlen += len; in do_ucmd()
1752 totlen += len; in do_ucmd()
1762 totlen += STRLEN(p); // Add on the trailing characters in do_ucmd()
1763 buf = alloc(totlen + 1); in do_ucmd()
H A Dregister.c1539 int totlen = 0; // init for gcc in do_put() local
1897 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces; in do_put()
1898 newp = alloc(totlen + oldlen + 1); in do_put()
1947 curbuf->b_op_end.col = bd.textcol + totlen - 1; in do_put()
2037 totlen = count * yanklen; in do_put()
2056 newp = alloc(totlen + oldlen + 1); in do_put()
2073 curwin->w_cursor.col += (colnr_T)(totlen - 1); in do_put()
2085 if (totlen && (restart_edit != 0 || (flags & PUT_CURSEND))) in do_put()
2105 totlen = (int)STRLEN(y_array[y_size - 1]); in do_put()
2106 newp = alloc(STRLEN(ptr) + totlen + 1); in do_put()
H A Dregexp.c2214 int totlen = mb_ptr2len(src - 1); in vim_regsub_both() local
2225 if (clen < totlen) in vim_regsub_both()
2229 (size_t)(totlen - clen)); in vim_regsub_both()
2230 dst += totlen - clen; in vim_regsub_both()
2233 src += totlen - 1; in vim_regsub_both()
H A Dspellfile.c6578 int totlen; in write_spell_prefcond() local
6584 totlen = 2 + gap->ga_len; // length of <prefcondcnt> and <condlen> bytes in write_spell_prefcond()
6598 totlen += len; in write_spell_prefcond()
6604 return totlen; in write_spell_prefcond()
/vim-8.2.3635/src/testdir/
H A Dtest_channel.vim1176 let totlen = 0
1179 let totlen += len(line)
1181 call assert_equal(10000, totlen)