Lines Matching refs:startspaces
1238 bd.startspaces = 0; in op_yank()
1251 bd.startspaces = (ce - cs + 1) in op_yank()
1275 bd.startspaces = oap->end.coladd in op_yank()
1467 if ((pnew = alloc(bd->startspaces + bd->endspaces + bd->textlen + 1)) in yank_copy_line()
1471 vim_memset(pnew, ' ', (size_t)bd->startspaces); in yank_copy_line()
1472 pnew += bd->startspaces; in yank_copy_line()
1828 bd.startspaces = 0; in do_put()
1855 bd.startspaces = col - vcol; in do_put()
1859 bd.startspaces = incr - bd.endspaces; in do_put()
1890 && count > ((INT_MAX - (bd.startspaces + bd.endspaces)) in do_put()
1897 totlen = count * (yanklen + spaces) + bd.startspaces + bd.endspaces; in do_put()
1908 vim_memset(ptr, ' ', (size_t)bd.startspaces); in do_put()
1909 ptr += bd.startspaces; in do_put()
1936 curwin->w_cursor.col += bd.startspaces; in do_put()