Lines Matching +full:0 +full:x61

29 	} while (0)
49 .str = {0xc2, 0xbc, 0x00},
50 .dec = {0xc2, 0xbc, 0x00},
55 .str = {0xc3, 0xa4, 0x00},
56 .dec = {0x61, 0xcc, 0x88, 0x00},
61 .str = {0xC7, 0x89, 0x00},
62 .dec = {0xC7, 0x89, 0x00},
66 .str = {0xCE, 0x87, 0x00},
67 .dec = {0xC2, 0xB7, 0x00}
73 .str = {0x41, 0xcc, 0x81, 0xcc, 0xa8, 0x0},
74 .dec = {0x41, 0xcc, 0xa8, 0xcc, 0x81, 0x0},
80 .str = {0xc3, 0xa4, 0xCC, 0xA8, 0x00},
82 .dec = {0x61, 0xCC, 0xA8, 0xcc, 0x88, 0x00},
95 .str = {0x41, 0x42, 0x62, 0x61, 0x00},
96 .ncf = {0x61, 0x62, 0x62, 0x61, 0x00},
106 .str = {0xc3, 0x9f, 0x00},
107 .ncf = {0x73, 0x73, 0x00},
112 .str = {0xC3, 0x85, 0x00},
113 .ncf = {0x61, 0xcc, 0x8a, 0x00},
115 /* Introduced by UTF-8.0.0. */
117 to upper-case. Before 8.0.0, Cherokee lowercase were
119 7.0.0 -> 8.0.0, but it is from UC. */
122 .str = {0xea, 0xad, 0xb0, 0x00},
123 .ncf = {0xe1, 0x8e, 0xa0, 0x00},
127 .str = {0xe1, 0x8f, 0xb8, 0x00},
128 .ncf = {0xe1, 0x8f, 0xb0, 0x00},
133 .str = {0xf0, 0x90, 0xb2, 0x83, 0x00},
134 .ncf = {0xf0, 0x90, 0xb3, 0x83, 0x00},
136 /* Introduced by UTF-9.0.0. */
140 .str = {0xf0, 0x90, 0x92, 0xb5, 0x00},
141 .ncf = {0xf0, 0x90, 0x93, 0x9d, 0x00},
146 .str = {0xea, 0x9e, 0xae, 0x00},
147 .ncf = {0xc9, 0xaa, 0x00},
149 /* Introduced by UTF-11.0.0. */
153 .str = {0xe1, 0xb2, 0x90, 0x00},
154 .ncf = {0xe1, 0x83, 0x90, 0x00},
175 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_nfdi()
178 int j = 0; in check_utf8_nfdi()
185 if (utf8cursor(&u8c, um, UTF8_NFDI, nfdi_test_data[i].str) < 0) in check_utf8_nfdi()
188 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdi()
190 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdi()
204 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_nfdicf()
207 int j = 0; in check_utf8_nfdicf()
216 nfdicf_test_data[i].str) < 0) in check_utf8_nfdicf()
219 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdicf()
221 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdicf()
234 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_comparisons()
244 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_comparisons()
257 /* Unicode 7.0.0 should be supported. */ in check_supported_versions()
258 test(utf8version_is_supported(um, UNICODE_AGE(7, 0, 0))); in check_supported_versions()
260 /* Unicode 9.0.0 should be supported. */ in check_supported_versions()
261 test(utf8version_is_supported(um, UNICODE_AGE(9, 0, 0))); in check_supported_versions()
267 test(!utf8version_is_supported(um, UNICODE_AGE(13, 0, 0))); in check_supported_versions()
268 test(!utf8version_is_supported(um, UNICODE_AGE(0, 0, 0))); in check_supported_versions()
276 failed_tests = 0; in init_test_ucd()
277 total_tests = 0; in init_test_ucd()
296 return 0; in init_test_ucd()