Home
last modified time | relevance | path

Searched refs:utf8len (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/crypto/external/bsd/heimdal/dist/lib/ntlm/
H A Dntlm.c339 size_t utf8len; in ret_string() local
354 CHECK(wind_ucs2utf8_length(data, utf16len, &utf8len), 0); in ret_string()
356 utf8len += 1; in ret_string()
358 *s = malloc(utf8len); in ret_string()
364 CHECK(wind_ucs2utf8(data, utf16len, *s, &utf8len), 0); in ret_string()
/netbsd-src/external/mit/libuv/dist/src/win/
H A Dinternal.h272 int uv__convert_utf8_to_utf16(const char* utf8, int utf8len, WCHAR** utf16);
H A Dutil.c1257 int uv__convert_utf8_to_utf16(const char* utf8, int utf8len, WCHAR** utf16) { in uv__convert_utf8_to_utf16() argument
1264 bufsize = MultiByteToWideChar(CP_UTF8, 0, utf8, utf8len, NULL, 0); in uv__convert_utf8_to_utf16()
1278 bufsize = MultiByteToWideChar(CP_UTF8, 0, utf8, utf8len, *utf16, bufsize); in uv__convert_utf8_to_utf16()