Home
last modified time | relevance | path

Searched refs:utf8bytes (Results 1 – 2 of 2) sorted by relevance

/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestStringByteConverter.java150 byte[] utf8bytes = test.getBytes("utf-8"); in testString()
152 System.out.println("\t" + hex(utf8bytes, 0, utf8bytes.length, " ")); in testString()
154 totalUtf8Bytes += utf8bytes.length; in testString()
197 byte[] utf8bytes = test2.getBytes("utf-8"); in testInt()
200 + hex(utf8bytes, 0, utf8bytes.length, " ")); in testInt()
/external/pcre/dist2/src/
Dpcre2test.c2783 utf82ord(PCRE2_SPTR8 utf8bytes, uint32_t *vptr) in utf82ord() argument
2785 uint32_t c = *utf8bytes++; in utf82ord()
2805 c = *utf8bytes++; in utf82ord()
3017 ord2utf8(uint32_t cvalue, uint8_t *utf8bytes) in ord2utf8() argument
3024 utf8bytes += i; in ord2utf8()
3027 *utf8bytes-- = 0x80 | (cvalue & 0x3f); in ord2utf8()
3030 *utf8bytes = utf8_table2[i] | cvalue; in ord2utf8()