Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dui.c74 static int ta_len; // length of ta_str when it's not NULL variable
84 newlen += ta_len - ta_off; in ui_inchar_undo()
90 mch_memmove(new, ta_str + ta_off, (size_t)(ta_len - ta_off)); in ui_inchar_undo()
91 mch_memmove(new + ta_len - ta_off, s, (size_t)len); in ui_inchar_undo()
97 ta_len = newlen; in ui_inchar_undo()
131 if (maxlen >= ta_len - ta_off) in ui_inchar()
133 mch_memmove(buf, ta_str + ta_off, (size_t)ta_len); in ui_inchar()
135 return ta_len; in ui_inchar()
H A Dos_unix.c5057 && (ta_len > 0 || noread_cnt > 4)) in mch_call_shell_fork()
5059 if (ta_len == 0) in mch_call_shell_fork()
5069 if (ta_len > 0 || len > 0) in mch_call_shell_fork()
5085 && ta_buf[ta_len] == Ctrl_D) in mch_call_shell_fork()
5100 for (i = ta_len; i < ta_len + len; ++i) in mch_call_shell_fork()
5118 ta_len += len; in mch_call_shell_fork()
5128 ta_len = 0; in mch_call_shell_fork()
5134 ta_len -= len; in mch_call_shell_fork()
5135 mch_memmove(ta_buf, ta_buf + len, ta_len); in mch_call_shell_fork()
5313 if (ta_len) in mch_call_shell_fork()
[all …]
H A Dos_win32.c4476 && (ta_len > 0 || noread_cnt > 4)) in mch_system_piped()
4478 if (ta_len == 0) in mch_system_piped()
4485 if (ta_len > 0 || len > 0) in mch_system_piped()
4493 if (ta_buf[ta_len] == Ctrl_C) in mch_system_piped()
4499 if (ta_buf[ta_len] == Ctrl_D) in mch_system_piped()
4512 for (i = ta_len; i < ta_len + len; ++i) in mch_system_piped()
4529 ta_len += len; in mch_system_piped()
4539 ta_len = 0; in mch_system_piped()
4548 ta_len -= len; in mch_system_piped()
4556 if (ta_len) in mch_system_piped()
[all …]
H A Dterm.c6734 term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len) in term_replace_bs_del_keycode() argument
6739 for (i = ta_len; i < ta_len + len; ++i) in term_replace_bs_del_keycode()
6758 i += (*mb_ptr2len_len)(ta_buf + i, ta_len + len - i) - 1; in term_replace_bs_del_keycode()
/vim-8.2.3635/src/proto/
H A Dterm.pro88 void term_replace_bs_del_keycode(char_u *ta_buf, int ta_len, int len);