Home | History | Annotate | Download | only in Unit

Lines Matching full:test__divmodsi4

22 int test__divmodsi4(si_int a, si_int b, 
44 if (test__divmodsi4(0, 1, 0, 0))
46 if (test__divmodsi4(0, -1, 0, 0))
49 if (test__divmodsi4(2, 1, 2, 0))
51 if (test__divmodsi4(2, -1, -2, 0))
53 if (test__divmodsi4(-2, 1, -2, 0))
55 if (test__divmodsi4(-2, -1, 2, 0))
58 if (test__divmodsi4(7, 5, 1, 2))
60 if (test__divmodsi4(-7, 5, -1, -2))
62 if (test__divmodsi4(19, 5, 3, 4))
64 if (test__divmodsi4(19, -5, -3, 4))
67 if (test__divmodsi4(0x80000000, 8, 0xf0000000, 0))
69 if (test__divmodsi4(0x80000007, 8, 0xf0000001, -1))