divti3_test.c | 23 int test__divti3(ti_int a, ti_int b, ti_int expected) function in typeref:typename:int 51 if (test__divti3(0, 1, 0)) 53 if (test__divti3(0, -1, 0)) 56 if (test__divti3(2, 1, 2)) 58 if (test__divti3(2, -1, -2)) 60 if (test__divti3(-2, 1, -2)) 62 if (test__divti3(-2, -1, 2)) 65 if (test__divti3(make_ti(0x8000000000000000LL, 0), 1, make_ti(0x8000000000000000LL, 0))) 67 if (test__divti3(make_ti(0x8000000000000000LL, 0), -1, make_ti(0x8000000000000000LL, 0))) 69 if (test__divti3(make_ti(0x8000000000000000LL, 0), -2, make_ti(0x4000000000000000LL, 0)) [all...] |