Home
last modified time | relevance | path

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

/art/test/ti-agent/
Dti_utf.h131 const uint16_t ch2 = *utf16_in; in ConvertUtf16ToModifiedUtf8() local
136 if (ch2 >= 0xdc00 && ch2 <= 0xdfff) { in ConvertUtf16ToModifiedUtf8()
139 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; in ConvertUtf16ToModifiedUtf8()
177 const uint16_t ch2 = *chars; in CountUtf8Bytes() local
181 if (ch2 >= 0xdc00 && ch2 < 0xe000) { in CountUtf8Bytes()
/art/libdexfile/dex/
Dutf.cc146 const uint16_t ch2 = *utf16_in; in ConvertUtf16ToModifiedUtf8() local
151 if (ch2 >= 0xdc00 && ch2 <= 0xdfff) { in ConvertUtf16ToModifiedUtf8()
154 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; in ConvertUtf16ToModifiedUtf8()
254 const uint16_t ch2 = *chars; in CountUtf8Bytes() local
258 if (ch2 >= 0xdc00 && ch2 < 0xe000) { in CountUtf8Bytes()
Dutf_test.cc240 const uint16_t ch2 = *chars; in CountUtf8Bytes_reference() local
244 if (ch2 >= 0xdc00 && ch2 <= 0xdfff) { in CountUtf8Bytes_reference()
278 const uint16_t ch2 = *utf16_in; in ConvertUtf16ToModifiedUtf8_reference() local
283 if (ch2 >= 0xdc00 && ch2 <= 0xdfff) { in ConvertUtf16ToModifiedUtf8_reference()
286 const uint32_t code_point = (ch << 10) + ch2 - 0x035fdc00; in ConvertUtf16ToModifiedUtf8_reference()