Lines Matching refs:oldp
1537 char_u *newp, *oldp; in do_put() local
1684 oldp = ml_get_curline(); in do_put()
1685 p = oldp + curwin->w_cursor.col; in do_put()
1688 ptr = vim_strnsave(oldp, p - oldp); in do_put()
1842 oldp = ml_get_curline(); in do_put()
1843 oldlen = (int)STRLEN(oldp); in do_put()
1844 for (ptr = oldp; vcol < col && *ptr; ) in do_put()
1847 incr = lbr_chartabsize_adv(oldp, &ptr, (colnr_T)vcol); in do_put()
1850 bd.textcol = (colnr_T)(ptr - oldp); in do_put()
1863 bd.textcol -= (*mb_head_off)(oldp, oldp + bd.textcol); in do_put()
1864 if (oldp[bd.textcol] != TAB) in do_put()
1904 mch_memmove(ptr, oldp, (size_t)bd.textcol); in do_put()
1930 mch_memmove(ptr, oldp + bd.textcol + delcount, in do_put()
2039 oldp = ml_get(lnum); in do_put()
2040 oldlen = (int)STRLEN(oldp); in do_put()
2059 mch_memmove(newp, oldp, (size_t)col); in do_put()
2066 STRMOVE(ptr, oldp + col); in do_put()
2116 oldp = ml_get(lnum); in do_put()
2121 mch_memmove(newp, oldp, (size_t)col); in do_put()