Searched refs:test__ashldi3 (Results 1 – 1 of 1) sorted by relevance
/frameworks/compile/libbcc/runtime/test/Unit/ |
D | ashldi3_test.c | 23 int test__ashldi3(di_int a, si_int b, di_int expected) in test__ashldi3() function 36 if (test__ashldi3(0x0123456789ABCDEFLL, 0, 0x123456789ABCDEFLL)) in main() 38 if (test__ashldi3(0x0123456789ABCDEFLL, 1, 0x2468ACF13579BDELL)) in main() 40 if (test__ashldi3(0x0123456789ABCDEFLL, 2, 0x48D159E26AF37BCLL)) in main() 42 if (test__ashldi3(0x0123456789ABCDEFLL, 3, 0x91A2B3C4D5E6F78LL)) in main() 44 if (test__ashldi3(0x0123456789ABCDEFLL, 4, 0x123456789ABCDEF0LL)) in main() 47 if (test__ashldi3(0x0123456789ABCDEFLL, 28, 0x789ABCDEF0000000LL)) in main() 49 if (test__ashldi3(0x0123456789ABCDEFLL, 29, 0xF13579BDE0000000LL)) in main() 51 if (test__ashldi3(0x0123456789ABCDEFLL, 30, 0xE26AF37BC0000000LL)) in main() 53 if (test__ashldi3(0x0123456789ABCDEFLL, 31, 0xC4D5E6F780000000LL)) in main() [all …]
|