Lines Matching refs:in
193 char in[530] = { 0 }; in test_a2ulabel() local
213 strcpy(in, "xn--"); in test_a2ulabel()
214 memset(in + 4, 'e', 513); in test_a2ulabel()
215 memcpy(in + 517, "-3ya", 4); in test_a2ulabel()
216 if (!TEST_int_eq(ossl_a2ulabel(in, out, 50), -1)) in test_a2ulabel()
227 static const char *in = "3B-ww4c5e180e575a65lsy2b"; in test_puny_overrun() local
231 if (!TEST_false(ossl_punycode_decode(in, strlen(in), buf, &bsize))) { in test_puny_overrun()
244 BUF_MEM *in; in test_dotted_overflow() local
250 if (!TEST_ptr(in = BUF_MEM_new())) in test_dotted_overflow()
252 if (!TEST_true(WPACKET_init_len(&p, in, 0))) { in test_dotted_overflow()
253 BUF_MEM_free(in); in test_dotted_overflow()
264 if (!TEST_ptr(out = OPENSSL_malloc(in->length))) in test_dotted_overflow()
268 memset(out, 0x7f, in->length - 1); in test_dotted_overflow()
269 if (!TEST_int_le(ossl_a2ulabel(in->data, out, num_reps), 0) in test_dotted_overflow()
274 if (!TEST_int_gt(ossl_a2ulabel(in->data, out, in->length), 0) in test_dotted_overflow()
281 BUF_MEM_free(in); in test_dotted_overflow()