Searched defs:test_binary_op (Results 1 - 2 of 2) sorted by relevance
/external/boringssl/src/crypto/ |
H A D | constant_time_test.c | 58 static int test_binary_op(unsigned int (*op)(unsigned int a, unsigned int b), function 251 test_binary_op(&constant_time_lt, "constant_time_lt", a, b, a < b); 255 test_binary_op(&constant_time_lt, "constant_time_lt_8", b, a, b < a); 259 test_binary_op(&constant_time_ge, "constant_time_ge", a, b, a >= b); 263 test_binary_op(&constant_time_ge, "constant_time_ge", b, a, b >= a); 267 test_binary_op(&constant_time_eq, "constant_time_eq", a, b, a == b); 271 test_binary_op(&constant_time_eq, "constant_time_eq", b, a, b == a);
|
/external/valgrind/memcheck/tests/vbit-test/ |
H A D | binary.c | 437 test_binary_op(const irop_t *op, test_data_t *data) function
|
Completed in 140 milliseconds