Home | History | Annotate | Download | only in Unit

Lines Matching refs:test__fixdfdi

27 int test__fixdfdi(double a, di_int expected)
41 if (test__fixdfdi(0.0, 0))
44 if (test__fixdfdi(0.5, 0))
46 if (test__fixdfdi(0.99, 0))
48 if (test__fixdfdi(1.0, 1))
50 if (test__fixdfdi(1.5, 1))
52 if (test__fixdfdi(1.99, 1))
54 if (test__fixdfdi(2.0, 2))
56 if (test__fixdfdi(2.01, 2))
58 if (test__fixdfdi(-0.5, 0))
60 if (test__fixdfdi(-0.99, 0))
62 if (test__fixdfdi(-1.0, -1))
64 if (test__fixdfdi(-1.5, -1))
66 if (test__fixdfdi(-1.99, -1))
68 if (test__fixdfdi(-2.0, -2))
70 if (test__fixdfdi(-2.01, -2))
73 if (test__fixdfdi(0x1.FFFFFEp+62, 0x7FFFFF8000000000LL))
75 if (test__fixdfdi(0x1.FFFFFCp+62, 0x7FFFFF0000000000LL))
78 if (test__fixdfdi(-0x1.FFFFFEp+62, 0x8000008000000000LL))
80 if (test__fixdfdi(-0x1.FFFFFCp+62, 0x8000010000000000LL))
83 if (test__fixdfdi(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00LL))
85 if (test__fixdfdi(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800LL))
88 if (test__fixdfdi(-0x1.FFFFFFFFFFFFFp+62, 0x8000000000000400LL))
90 if (test__fixdfdi(-0x1.FFFFFFFFFFFFEp+62, 0x8000000000000800LL))