Home
last modified time | relevance | path

Searched refs:unicodebuf (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/
H A Dgui_w32.c6007 *unicodebuf++ = c; in latin9_to_ucs()
6116 static WCHAR *unicodebuf = NULL; in gui_mch_draw_string() local
6243 && (unicodebuf == NULL || len > unibuflen)) in gui_mch_draw_string()
6245 vim_free(unicodebuf); in gui_mch_draw_string()
6246 unicodebuf = LALLOC_MULT(WCHAR, len); in gui_mch_draw_string()
6254 if (enc_utf8 && n < len && unicodebuf != NULL) in gui_mch_draw_string()
6279 unicodebuf[wlen++] = c; in gui_mch_draw_string()
6328 if (unicodebuf != NULL) in gui_mch_draw_string()
6331 latin9_to_ucs(text, len, unicodebuf); in gui_mch_draw_string()
6336 (LPWSTR)unicodebuf, unibuflen); in gui_mch_draw_string()
[all …]
H A Dos_win32.c6226 static WCHAR *unicodebuf = NULL; in write_chars() local
6233 static WCHAR **utf8usingbuf = &unicodebuf; in write_chars()
6237 utf8usingbuf = &unicodebuf; in write_chars()
6241 unicodebuf, unibuflen); in write_chars()
6244 vim_free(unicodebuf); in write_chars()
6245 unicodebuf = length ? LALLOC_MULT(WCHAR, length) : NULL; in write_chars()