Searched refs:test__mulosi4 (Results 1 – 1 of 1) sorted by relevance
/external/compiler-rt/test/builtins/Unit/ |
D | mulosi4_test.c | 23 int test__mulosi4(si_int a, si_int b, si_int expected, int expected_overflow) in test__mulosi4() function 42 if (test__mulosi4(0, 0, 0, 0)) in main() 44 if (test__mulosi4(0, 1, 0, 0)) in main() 46 if (test__mulosi4(1, 0, 0, 0)) in main() 48 if (test__mulosi4(0, 10, 0, 0)) in main() 50 if (test__mulosi4(10, 0, 0, 0)) in main() 52 if (test__mulosi4(0, 0x1234567, 0, 0)) in main() 54 if (test__mulosi4(0x1234567, 0, 0, 0)) in main() 57 if (test__mulosi4(0, -1, 0, 0)) in main() 59 if (test__mulosi4(-1, 0, 0, 0)) in main() [all …]
|