Lines Matching +full:0 +full:x61

29                .str = {0xc2, 0xbc, 0x00},
30 .dec = {0xc2, 0xbc, 0x00},
35 .str = {0xc3, 0xa4, 0x00},
36 .dec = {0x61, 0xcc, 0x88, 0x00},
41 .str = {0xC7, 0x89, 0x00},
42 .dec = {0xC7, 0x89, 0x00},
46 .str = {0xCE, 0x87, 0x00},
47 .dec = {0xC2, 0xB7, 0x00}
53 .str = {0x41, 0xcc, 0x81, 0xcc, 0xa8, 0x0},
54 .dec = {0x41, 0xcc, 0xa8, 0xcc, 0x81, 0x0},
60 .str = {0xc3, 0xa4, 0xCC, 0xA8, 0x00},
62 .dec = {0x61, 0xCC, 0xA8, 0xcc, 0x88, 0x00},
75 .str = {0x41, 0x42, 0x62, 0x61, 0x00},
76 .ncf = {0x61, 0x62, 0x62, 0x61, 0x00},
86 .str = {0xc3, 0x9f, 0x00},
87 .ncf = {0x73, 0x73, 0x00},
92 .str = {0xC3, 0x85, 0x00},
93 .ncf = {0x61, 0xcc, 0x8a, 0x00},
95 /* Introduced by UTF-8.0.0. */
97 to upper-case. Before 8.0.0, Cherokee lowercase were
99 7.0.0 -> 8.0.0, but it is from UC. */
102 .str = {0xea, 0xad, 0xb0, 0x00},
103 .ncf = {0xe1, 0x8e, 0xa0, 0x00},
107 .str = {0xe1, 0x8f, 0xb8, 0x00},
108 .ncf = {0xe1, 0x8f, 0xb0, 0x00},
113 .str = {0xf0, 0x90, 0xb2, 0x83, 0x00},
114 .ncf = {0xf0, 0x90, 0xb3, 0x83, 0x00},
116 /* Introduced by UTF-9.0.0. */
120 .str = {0xf0, 0x90, 0x92, 0xb5, 0x00},
121 .ncf = {0xf0, 0x90, 0x93, 0x9d, 0x00},
126 .str = {0xea, 0x9e, 0xae, 0x00},
127 .ncf = {0xc9, 0xaa, 0x00},
129 /* Introduced by UTF-11.0.0. */
133 .str = {0xe1, 0xb2, 0x90, 0x00},
134 .ncf = {0xe1, 0x83, 0x90, 0x00},
156 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_nfdi()
159 int j = 0; in check_utf8_nfdi()
169 KUNIT_EXPECT_TRUE_MSG(test, ret >= 0, "Can't create cursor\n"); in check_utf8_nfdi()
171 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdi()
173 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdi()
188 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_nfdicf()
191 int j = 0; in check_utf8_nfdicf()
201 KUNIT_EXPECT_TRUE_MSG(test, ret >= 0, "Can't create cursor\n"); in check_utf8_nfdicf()
203 while ((c = utf8byte(&u8c)) > 0) { in check_utf8_nfdicf()
205 "Unexpected byte 0x%x should be 0x%x\n", in check_utf8_nfdicf()
219 for (i = 0; i < ARRAY_SIZE(nfdi_test_data); i++) { in check_utf8_comparisons()
225 /* strncmp returns 0 when strings are equal */ in check_utf8_comparisons()
226 KUNIT_EXPECT_TRUE_MSG(test, utf8_strncmp(um, &s1, &s2) == 0, in check_utf8_comparisons()
230 for (i = 0; i < ARRAY_SIZE(nfdicf_test_data); i++) { in check_utf8_comparisons()
236 /* strncasecmp returns 0 when strings are equal */ in check_utf8_comparisons()
237 KUNIT_EXPECT_TRUE_MSG(test, utf8_strncasecmp(um, &s1, &s2) == 0, in check_utf8_comparisons()
245 /* Unicode 7.0.0 should be supported. */ in check_supported_versions()
246 KUNIT_EXPECT_TRUE(test, utf8version_is_supported(um, UNICODE_AGE(7, 0, 0))); in check_supported_versions()
248 /* Unicode 9.0.0 should be supported. */ in check_supported_versions()
249 KUNIT_EXPECT_TRUE(test, utf8version_is_supported(um, UNICODE_AGE(9, 0, 0))); in check_supported_versions()
255 KUNIT_EXPECT_FALSE(test, utf8version_is_supported(um, UNICODE_AGE(13, 0, 0))); in check_supported_versions()
256 KUNIT_EXPECT_FALSE(test, utf8version_is_supported(um, UNICODE_AGE(0, 0, 0))); in check_supported_versions()
274 KUNIT_EXPECT_EQ_MSG(test, IS_ERR(um), 0, in init_test_ucd()
277 return 0; in init_test_ucd()