Searched refs:outstr (Results 1 – 3 of 3) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | winclip.c | 53 utf8_to_utf16(char_u *instr, int inlen, short_u *outstr, int *unconvlenp) in utf8_to_utf16() argument 78 if (outstr != NULL) in utf8_to_utf16() 80 *outstr++ = (0xD800 - (0x10000 >> 10)) + (ch >> 10); in utf8_to_utf16() 81 *outstr++ = 0xDC00 | (ch & 0x3FF); in utf8_to_utf16() 84 else if (outstr != NULL) in utf8_to_utf16() 85 *outstr++ = ch; in utf8_to_utf16() 102 utf16_to_utf8(short_u *instr, int inlen, char_u *outstr) in utf16_to_utf8() argument 124 if (outstr != NULL) in utf16_to_utf8() 126 l = utf_char2bytes(ch, outstr); in utf16_to_utf8() 127 outstr += l; in utf16_to_utf8()
|
| /vim-8.2.3635/src/proto/ |
| H A D | winclip.pro | 2 int utf8_to_utf16(char_u *instr, int inlen, short_u *outstr, int *unconvlenp); 3 int utf16_to_utf8(short_u *instr, int inlen, char_u *outstr);
|
| /vim-8.2.3635/src/testdir/ |
| H A D | test_termcodes.vim | 1523 for [code, outstr] in mouse_codes 1525 call assert_equal(outstr, getline(1), msg)
|