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

  /art/runtime/
utf.cc 105 int CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(const char* utf8_1, const char* utf8_2) {
108 return (*utf8_2 == '\0') ? 0 : -1;
109 } else if (*utf8_2 == '\0') {
114 int c2 = GetUtf16FromUtf8(&utf8_2);
122 int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8_1, const uint16_t* utf8_2) {
125 return (*utf8_2 == '\0') ? 0 : -1;
126 } else if (*utf8_2 == '\0') {
131 int c2 = *utf8_2;
utf.h 56 int CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(const char* utf8_1, const char* utf8_2);
62 int CompareModifiedUtf8ToUtf16AsCodePointValues(const char* utf8_1, const uint16_t* utf8_2);
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 537 static const wchar_t utf8_2[] = { 0xD55C, 0xAD6D, 0xC5B4 }; local
828 DO(der_encode_utf8_string(utf8_2, sizeof(utf8_2) / sizeof(utf8_2[0]), utf8_buf, &x));
830 fprintf(stderr, "DER UTF8_2 encoded to %lu bytes\n", x);
837 if (y != (sizeof(utf8_2) / sizeof(utf8_2[0])) || memcmp(utf8_2, utf8_out, y * sizeof(wchar_t))) {
838 fprintf(stderr, "DER UTF8_2 decoded to %lu wchar_t\n", y);
    [all...]

Completed in 264 milliseconds