Home
last modified time | relevance | path

Searched refs:outlen (Results 1 – 13 of 13) sorted by relevance

/vim-8.2.3635/src/
H A Dwinclip.c55 int outlen = 0; in utf8_to_utf16() local
77 ++outlen; in utf8_to_utf16()
86 ++outlen; in utf8_to_utf16()
91 return outlen; in utf8_to_utf16()
104 int outlen = 0; in utf16_to_utf8() local
132 outlen += l; in utf16_to_utf8()
136 return outlen; in utf16_to_utf8()
155 (*out)[*outlen] = 0; in MultiByteToWideChar_alloc()
175 (*out)[*outlen] = 0; in WideCharToMultiByte_alloc()
738 int *outlen) in acp_to_enc() argument
[all …]
H A Dgui_beval.c834 int outlen; in set_printable_label_text() local
841 outlen = 4; in set_printable_label_text()
848 outlen = (uc < 0x100) ? 4 : 6; in set_printable_label_text()
853 outlen = 2; in set_printable_label_text()
873 attr->end_index = pdest - buf + outlen; in set_printable_label_text()
878 attr_alpha->end_index = pdest - buf + outlen; in set_printable_label_text()
883 pdest += outlen; in set_printable_label_text()
H A Dbuffer.c4094 size_t outlen, // length of out[] in build_stl_str_hl() argument
4249 if (*s == NUL || p + 1 >= out + outlen) in build_stl_str_hl()
4260 if (p + 1 >= out + outlen) in build_stl_str_hl()
4372 while (l++ < n && p + 1 < out + outlen) in build_stl_str_hl()
4380 if (p + l >= out + outlen) in build_stl_str_hl()
4381 l = (long)((out + outlen) - p - 1); in build_stl_str_hl()
4524 && *s != NUL && p + 1 < out + outlen) in build_stl_str_hl()
4806 if (p + 1 >= out + outlen) in build_stl_str_hl()
4812 for (; l < minwid && p + 1 < out + outlen; l++) in build_stl_str_hl()
4824 for (; *t && p + 1 < out + outlen; t++) in build_stl_str_hl()
[all …]
H A Dchannel.c1838 if (outlen != NULL) in channel_get()
1839 *outlen += node->rq_buflen; in channel_get()
1885 if (outlen != NULL) in channel_get_all()
1888 *outlen += len; in channel_get_all()
3657 if (mode == MODE_RAW || outlen != NULL) in channel_read_block()
3659 msg = channel_get_all(channel, part, outlen); in channel_read_block()
3888 int outlen = 0; in common_channel_read() local
3890 timeout, TRUE, &outlen); in common_channel_read()
3897 b->bv_ga.ga_len = outlen; in common_channel_read()
3898 if (ga_grow(&b->bv_ga, outlen) == FAIL) in common_channel_read()
[all …]
H A Dgui.c2207 int outlen = 0; in gui_screenstr() local
2226 buf[outlen++] = ScreenLines[i]; in gui_screenstr()
2228 outlen += utfc_char2bytes(i, buf + outlen); in gui_screenstr()
2231 buf[outlen] = NUL; // only to aid debugging in gui_screenstr()
2232 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back); in gui_screenstr()
2245 buf[outlen++] = ScreenLines[i]; in gui_screenstr()
2249 buf[outlen++] = ScreenLines2[i]; in gui_screenstr()
2251 buf[outlen++] = ScreenLines[++i]; in gui_screenstr()
2254 buf[outlen] = NUL; // only to aid debugging in gui_screenstr()
2255 retval = gui_outstr_nowrap(buf, outlen, flags, fg, bg, back); in gui_screenstr()
H A Dsyntax.c4259 int outlen; in syn_list_keywords() local
4290 outlen = 9999; in syn_list_keywords()
4292 outlen = (int)STRLEN(kp->keyword); in syn_list_keywords()
4294 if (syn_list_header(did_header, outlen, id)) in syn_list_keywords()
H A Dhighlight.c3161 int outlen, // length of string that comes in syn_list_header() argument
3177 else if (msg_col + outlen + 1 >= Columns) in syn_list_header()
/vim-8.2.3635/src/proto/
H A Dwinclip.pro4 void MultiByteToWideChar_alloc(UINT cp, DWORD flags, LPCSTR in, int inlen, LPWSTR *out, int *outlen
5 void WideCharToMultiByte_alloc(UINT cp, DWORD flags, LPCWSTR in, int inlen, LPSTR *out, int *outlen
13 void acp_to_enc(char_u *str, int str_size, char_u **out, int *outlen);
14 void enc_to_acp(char_u *str, int str_size, char_u **out, int *outlen);
H A Dhighlight.pro34 int syn_list_header(int did_header, int outlen, int id);
H A Dchannel.pro22 char_u *channel_get(channel_T *channel, ch_part_T part, int *outlen);
H A Dbuffer.pro51 int build_stl_str_hl(win_T *wp, char_u *out, size_t outlen, char_u *fmt, int use_sandbox, int fillc…
/vim-8.2.3635/src/libvterm/t/
H A Dharness.c534 size_t outlen; in main() local
1026 outlen = vterm_output_get_buffer_current(vt); in main()
1027 if(outlen > 0) { in main()
1029 vterm_output_read(vt, outbuff, outlen); in main()
1031 term_output(outbuff, outlen, NULL); in main()
/vim-8.2.3635/src/testdir/
H A Dtest_channel.vim2043 let outlen = 79999
2044 let want = repeat('X', outlen) . "\n"
2046 call WaitFor({-> len(g:out) >= outlen}, 10000)