Searched refs:utf16_buffer (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/uv/src/win/ |
H A D | util.c | 98 WCHAR* utf16_buffer; in uv_exepath() local 112 utf16_buffer = (WCHAR*) uv__malloc(sizeof(WCHAR) * utf16_buffer_len); in uv_exepath() 113 if (!utf16_buffer) { in uv_exepath() 118 utf16_len = GetModuleFileNameW(NULL, utf16_buffer, utf16_buffer_len); in uv_exepath() 125 utf16_buffer[utf16_len] = L'\0'; in uv_exepath() 130 utf16_buffer, in uv_exepath() 141 uv__free(utf16_buffer); in uv_exepath() 149 uv__free(utf16_buffer); in uv_exepath() 156 WCHAR *utf16_buffer; in uv_cwd() local 167 utf16_buffer in uv_cwd() 228 WCHAR *utf16_buffer; uv_chdir() local [all...] |
H A D | tty.c | 830 WCHAR utf16_buffer[2]; in uv_process_tty_read_raw_req() local 831 utf16_buffer[0] = handle->tty.rd.last_utf16_high_surrogate; in uv_process_tty_read_raw_req() 832 utf16_buffer[1] = KEV.uChar.UnicodeChar; in uv_process_tty_read_raw_req() 835 utf16_buffer, in uv_process_tty_read_raw_req()
|
/third_party/libuv/src/win/ |
H A D | util.c | 99 WCHAR* utf16_buffer; in uv_exepath() local 113 utf16_buffer = (WCHAR*) uv__malloc(sizeof(WCHAR) * utf16_buffer_len); in uv_exepath() 114 if (!utf16_buffer) { in uv_exepath() 119 utf16_len = GetModuleFileNameW(NULL, utf16_buffer, utf16_buffer_len); in uv_exepath() 127 err = uv_utf16_to_wtf8(utf16_buffer, utf16_len, &buffer, &utf8_len); in uv_exepath() 134 uv__free(utf16_buffer); in uv_exepath() 139 uv__free(utf16_buffer); in uv_exepath() 191 WCHAR *utf16_buffer; in uv_cwd() local 198 r = uv__cwd(&utf16_buffer, &utf16_len); in uv_cwd() 202 r = uv__copy_utf16_to_utf8(utf16_buffer, utf16_le in uv_cwd() 211 WCHAR *utf16_buffer; uv_chdir() local [all...] |
H A D | tty.c | 827 WCHAR utf16_buffer[2]; in uv_process_tty_read_raw_req() local 828 utf16_buffer[0] = handle->tty.rd.last_utf16_high_surrogate; in uv_process_tty_read_raw_req() 829 utf16_buffer[1] = KEV.uChar.UnicodeChar; in uv_process_tty_read_raw_req() 830 if (uv_utf16_to_wtf8(utf16_buffer, in uv_process_tty_read_raw_req()
|
/third_party/node/deps/simdutf/ |
H A D | simdutf.h | 1071 * @param utf16_buffer the pointer to buffer that can hold conversion result 1083 * @param utf16_buffer the pointer to buffer that can hold conversion result 1121 * @param utf16_buffer the pointer to buffer that can hold conversion result 1132 * @param utf16_buffer the pointer to buffer that can hold conversion result 1145 * @param utf16_buffer the pointer to buffer that can hold conversion result 1158 * @param utf16_buffer the pointer to buffer that can hold conversion result 1186 * @param utf16_buffer the pointer to buffer that can hold conversion result 1199 * @param utf16_buffer the pointer to buffer that can hold conversion result 1212 * @param utf16_buffer the pointer to buffer that can hold conversion result 1265 * @param utf16_buffer th [all...] |
H A D | simdutf.cpp | 80 simdutf_warn_unused size_t convert_latin1_to_utf16le(const char * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 81 simdutf_warn_unused size_t convert_latin1_to_utf16be(const char * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 90 simdutf_warn_unused size_t convert_valid_utf8_to_utf16le(const char * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 91 simdutf_warn_unused size_t convert_valid_utf8_to_utf16be(const char * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 113 simdutf_warn_unused size_t convert_utf32_to_utf16le(const char32_t * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 114 simdutf_warn_unused size_t convert_utf32_to_utf16be(const char32_t * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 115 simdutf_warn_unused result convert_utf32_to_utf16le_with_errors(const char32_t * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 116 simdutf_warn_unused result convert_utf32_to_utf16be_with_errors(const char32_t * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 117 simdutf_warn_unused size_t convert_valid_utf32_to_utf16le(const char32_t * buf, size_t len, char16_t* utf16_buffer) const noexcept final; 118 simdutf_warn_unused size_t convert_valid_utf32_to_utf16be(const char32_t * buf, size_t len, char16_t* utf16_buffer) cons [all...] |
Completed in 30 milliseconds