Searched refs:newp (Results 1 – 8 of 8) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | ops.c | 362 if (newp == NULL) in shift_block() 455 if (newp == NULL) in shift_block() 552 if (newp == NULL) in block_insert() 787 if (newp == NULL) in op_delete() 1097 if (newp == NULL) in op_replace() 1117 vim_memset(newp + STRLEN(newp), c, (size_t)numc); in op_replace() 1121 vim_memset(newp + STRLEN(newp), ' ', (size_t)bd.endspaces); in op_replace() 1123 STRMOVE(newp + STRLEN(newp), oldp); in op_replace() 1794 if (newp == NULL) in op_change() 1937 char_u *newp; in do_join() local [all …]
|
| H A D | change.c | 1021 char_u *newp; in ins_char_bytes() local 1097 if (newp == NULL) in ins_char_bytes() 1105 p = newp + col; in ins_char_bytes() 1155 char_u *oldp, *newp; in ins_str() local 1169 if (newp == NULL) in ins_str() 1235 char_u *oldp, *newp; in del_bytes() local 1321 newp = alloc(newlen + 1); in del_bytes() 1322 if (newp == NULL) in del_bytes() 1328 ml_replace(lnum, newp, FALSE); in del_bytes() 2313 char_u *newp; in truncate_line() local [all …]
|
| H A D | register.c | 1537 char_u *newp, *oldp; in do_put() local 1899 if (newp == NULL) in do_put() 1903 ptr = newp; in do_put() 2057 if (newp == NULL) in do_put() 2060 ptr = newp + col; in do_put() 2067 ml_replace(lnum, newp, FALSE); in do_put() 2107 if (newp == NULL) in do_put() 2110 STRCAT(newp, ptr); in do_put() 2114 vim_free(newp); in do_put() 2118 if (newp == NULL) in do_put() [all …]
|
| H A D | window.c | 1372 newp->w_valid = 0; in win_init() 1383 newp->w_wrow = oldp->w_wrow; in win_init() 1387 copy_jumplist(oldp, newp); in win_init() 1393 newp->w_llist = NULL; in win_init() 1394 newp->w_llist_ref = NULL; in win_init() 1397 copy_loclist_stack(oldp, newp); in win_init() 1417 copyFoldingState(oldp, newp); in win_init() 1420 win_init_some(newp, oldp); in win_init() 1423 check_colorcolumn(newp); in win_init() 1426 term_update_wincolor(newp); in win_init() [all …]
|
| H A D | regexp.c | 580 char_u **newp, in skip_regexp_ex() argument 606 if (dirc == '?' && newp != NULL && p[1] == '?') in skip_regexp_ex() 609 if (*newp == NULL) in skip_regexp_ex() 611 *newp = vim_strsave(startp); in skip_regexp_ex() 612 if (*newp != NULL) in skip_regexp_ex() 613 p = *newp + (p - startp); in skip_regexp_ex() 617 if (*newp != NULL) in skip_regexp_ex()
|
| H A D | edit.c | 5038 char_u *newp; in ins_tab() local 5041 newp = alloc(curbuf->b_ml.ml_line_len - i); in ins_tab() 5042 if (newp == NULL) in ins_tab() 5047 mch_memmove(newp, ptr - col, col); in ins_tab() 5048 mch_memmove(newp + col, ptr + i, in ins_tab() 5053 curbuf->b_ml.ml_line_ptr = newp; in ins_tab()
|
| H A D | gui_w32.c | 7821 WORD *newp; in gui_mch_tearoff() local 7823 newp = (WORD *)LocalAlloc(LPTR, template_len + 4096); in gui_mch_tearoff() 7824 if (newp != NULL) in gui_mch_tearoff() 7827 mch_memmove(newp, pdlgtemplate, in gui_mch_tearoff() 7829 p = newp + (p - pdlgtemplate); in gui_mch_tearoff() 7830 pnumitems = newp + (pnumitems - pdlgtemplate); in gui_mch_tearoff() 7831 ptrueheight = newp + (ptrueheight - pdlgtemplate); in gui_mch_tearoff() 7833 pdlgtemplate = newp; in gui_mch_tearoff()
|
| /vim-8.2.3635/src/proto/ |
| H A D | regexp.pro | 5 char_u *skip_regexp_ex(char_u *startp, int dirc, int magic, char_u **newp, int *dropped, magic_T *m…
|