Lines Matching full:xn
176 { 20, "xn--e-*" }, /* bad digit '*' */
177 { 10, "xn--e-999" }, /* loop > enc_len */
178 { 20, "xn--e-999999999" }, /* Too big */
180 { 20, "xn--e-Oy65t" }, /* codepoint > 0x10FFFF */
199 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 1), 0) in test_a2ulabel()
200 || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 7), 1)) in test_a2ulabel()
203 if (!TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 6), 0) in test_a2ulabel()
204 || !TEST_int_eq(ossl_a2ulabel("xn--a.b.c", out, 7), 1) in test_a2ulabel()
209 if (!TEST_int_eq(ossl_a2ulabel("xn--e28h.com", out, 10), 1)) in test_a2ulabel()
213 strcpy(in, "xn--"); in test_a2ulabel()
259 if (!TEST_true(WPACKET_memcpy(&p, "xn--a", sizeof("xn--a") - 1))) in test_dotted_overflow()