Home
last modified time | relevance | path

Searched refs:TEST_uint_eq (Results 1 – 7 of 7) sorted by relevance

/third_party/openssl/test/
Dconstant_time_test.c65 if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE)) in test_binary_op()
67 if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE)) in test_binary_op()
77 if (is_true && !TEST_uint_eq(op(a, b), CONSTTIME_TRUE_8)) in test_binary_op_8()
79 if (!is_true && !TEST_uint_eq(op(a, b), CONSTTIME_FALSE_8)) in test_binary_op_8()
90 if (!is_true && !TEST_uint_eq(op(a,b), CONSTTIME_FALSE_S)) in test_binary_op_s()
117 if (a == 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_TRUE)) in test_is_zero()
119 if (a != 0 && !TEST_uint_eq(constant_time_is_zero(a), CONSTTIME_FALSE)) in test_is_zero()
128 if (a == 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_TRUE_8)) in test_is_zero_8()
130 if (a != 0 && !TEST_uint_eq(constant_time_is_zero_8(a), CONSTTIME_FALSE_8)) in test_is_zero_8()
152 if (a != 0 && !TEST_uint_eq(constant_time_is_zero_s(a), CONSTTIME_FALSE_S)) in test_is_zero_s()
[all …]
Dpackettest.c55 || !TEST_uint_eq(i, 0x02) in test_PACKET_get_1()
58 || !TEST_uint_eq(i, 0xfe) in test_PACKET_get_1()
89 || !TEST_uint_eq(i, 0x0204) in test_PACKET_get_net_2()
92 || !TEST_uint_eq(i, 0xfcfe) in test_PACKET_get_net_2()
364 || !TEST_uint_eq(i, 0x0204) in test_PACKET_get_length_prefixed_1()
387 || !TEST_uint_eq(i, 0x0608) in test_PACKET_get_length_prefixed_2()
410 || !TEST_uint_eq(i, 0x0608) in test_PACKET_get_length_prefixed_3()
Ddhtest.c124 TEST_uint_eq(BN_get_word(pub_key2), 3331L); in dh_test()
544 if (!TEST_uint_eq(td->Z_len, (size_t)DH_size(dhA)) in rfc5114_test()
545 || !TEST_uint_eq(td->Z_len, (size_t)DH_size(dhB))) in rfc5114_test()
Dservername_test.c70 || !TEST_uint_eq(servname_type, TLSEXT_NAMETYPE_host_name) in get_sni_from_client_hello()
Dtest_test.c58 if (!TEST(1, TEST_uint_eq(3u, 3u)) in test_uint()
59 | !TEST(0, TEST_uint_eq(3u, 5u)) in test_uint()
Ddestest.c19 # define TEST_cs_eq TEST_uint_eq
Dtestutil.h298 # define TEST_uint_eq(a, b) test_uint_eq(__FILE__, __LINE__, #a, #b, a, b) macro