HomeSort by relevance Sort by last modified time
    Searched refs:utf8_out (Results 1 - 3 of 3) sorted by null

  /art/runtime/
utf.cc 52 void ConvertUtf16ToModifiedUtf8(char* utf8_out, const uint16_t* utf16_in, size_t char_count) {
56 *utf8_out++ = ch;
59 *utf8_out++ = (ch >> 12) | 0xe0;
60 *utf8_out++ = ((ch >> 6) & 0x3f) | 0x80;
61 *utf8_out++ = (ch & 0x3f) | 0x80;
63 *utf8_out++ = (ch >> 6) | 0xc0;
64 *utf8_out++ = (ch & 0x3f) | 0x80;
utf.h 70 void ConvertUtf16ToModifiedUtf8(char* utf8_out, const uint16_t* utf16_in, size_t char_count);
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 541 wchar_t utf8_out[32]; local
818 y = sizeof(utf8_out) / sizeof(utf8_out[0]);
819 DO(der_decode_utf8_string(utf8_buf, x, utf8_out, &y));
820 if (y != (sizeof(utf8_1) / sizeof(utf8_1[0])) || memcmp(utf8_1, utf8_out, y * sizeof(wchar_t))) {
822 for (x = 0; x < y; x++) fprintf(stderr, "%04lx ", (unsigned long)utf8_out[x]); fprintf(stderr, "\n");
835 y = sizeof(utf8_out) / sizeof(utf8_out[0]);
836 DO(der_decode_utf8_string(utf8_buf, x, utf8_out, &y));
837 if (y != (sizeof(utf8_2) / sizeof(utf8_2[0])) || memcmp(utf8_2, utf8_out, y * sizeof(wchar_t)))
    [all...]

Completed in 55 milliseconds