Lines Matching full:xn
135 { 20, "xn--e-*" }, /* bad digit '*' */
136 { 10, "xn--e-999" }, /* loop > enc_len */
137 { 20, "xn--e-999999999" }, /* Too big */
139 { 20, "xn--e-Oy65t" }, /* codepoint > 0x10FFFF */
158 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 1), 0) in test_a2ulabel()
159 || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 7), 1)) in test_a2ulabel()
162 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 6), 0) in test_a2ulabel()
163 || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 7), 1) in test_a2ulabel()
168 if (!TEST_int_eq(ossl_a2ulabel("xn--e28h.com", out, 10), 1)) in test_a2ulabel()
172 strcpy(in, "xn--"); in test_a2ulabel()
218 if (!TEST_true(WPACKET_memcpy(&p, "xn--a", sizeof("xn--a") - 1))) in test_dotted_overflow()