Home
last modified time | relevance | path

Searched refs:test_binary_op (Results 1 – 4 of 4) sorted by relevance

/external/boringssl/src/crypto/
Dconstant_time_test.c58 static int test_binary_op(unsigned int (*op)(unsigned int a, unsigned int b), in test_binary_op() function
251 test_binary_op(&constant_time_lt, "constant_time_lt", a, b, a < b); in main()
255 test_binary_op(&constant_time_lt, "constant_time_lt_8", b, a, b < a); in main()
259 test_binary_op(&constant_time_ge, "constant_time_ge", a, b, a >= b); in main()
263 test_binary_op(&constant_time_ge, "constant_time_ge", b, a, b >= a); in main()
267 test_binary_op(&constant_time_eq, "constant_time_eq", a, b, a == b); in main()
271 test_binary_op(&constant_time_eq, "constant_time_eq", b, a, b == a); in main()
/external/valgrind/memcheck/tests/vbit-test/
Dvtest.h111 int test_binary_op(const irop_t *, test_data_t *);
Dmain.c135 num_binary_tests += test_binary_op(op, data); in main()
Dbinary.c413 test_binary_op(const irop_t *op, test_data_t *data) in test_binary_op() function