Searched refs:expected_q (Results 1 – 4 of 4) sorted by relevance
/frameworks/compile/libbcc/runtime/test/Unit/ |
D | udivdi3_test.c | 21 int test__udivdi3(du_int a, du_int b, du_int expected_q) in test__udivdi3() argument 24 if (q != expected_q) in test__udivdi3() 26 a, b, q, expected_q); in test__udivdi3() 27 return q != expected_q; in test__udivdi3()
|
D | udivsi3_test.c | 21 int test__udivsi3(su_int a, su_int b, su_int expected_q) in test__udivsi3() argument 24 if (q != expected_q) in test__udivsi3() 26 a, b, q, expected_q); in test__udivsi3() 27 return q != expected_q; in test__udivsi3()
|
D | udivmoddi4_test.c | 22 int test__udivmoddi4(du_int a, du_int b, du_int expected_q, du_int expected_r) in test__udivmoddi4() argument 26 if (q != expected_q || r != expected_r) in test__udivmoddi4() 28 a, b, q, r, expected_q, expected_r); in test__udivmoddi4() 29 return !(q == expected_q && r == expected_r); in test__udivmoddi4()
|
D | udivti3_test.c | 23 int test__udivti3(tu_int a, tu_int b, tu_int expected_q) in test__udivti3() argument 26 if (q != expected_q) in test__udivti3() 35 expected_qt.all = expected_q; in test__udivti3() 41 return q != expected_q; in test__udivti3()
|