Home
last modified time | relevance | path

Searched refs:thislen (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dpopupmenu.c1289 int thislen; in split_message() local
1298 for (skip = 0; skip < item->bytelen; skip += thislen) in split_message()
1308 thislen = p - (item->start + skip); in split_message()
1311 thislen = item->bytelen; in split_message()
1314 p = alloc(thislen + item->indent * 2 + 1); in split_message()
1326 for (copylen = thislen; copylen > 0; --copylen) in split_message()
H A Dgui.c2520 int thislen; // length of bytes to be drawn in gui_outstr_nowrap() local
2580 thislen = i - start; in gui_outstr_nowrap()
2582 thislen = i - start + cl; in gui_outstr_nowrap()
2583 if (thislen > 0) in gui_outstr_nowrap()
2587 gui_mch_draw_string(gui.row, scol, s + start, thislen, in gui_outstr_nowrap()
2591 start += thislen; in gui_outstr_nowrap()
/vim-8.2.3635/src/libvterm/src/
H A Dscreen.c769 size_t thislen = utf8_seqlen(c); \ in _get_chars()
770 if(buffer && outpos + thislen <= len) \ in _get_chars()
773 outpos += thislen; \ in _get_chars()