Home | History | Annotate | Download | only in Unit

Lines Matching full:test__fixunsdfdi

29 int test__fixunsdfdi(double a, du_int expected)
43 if (test__fixunsdfdi(0.0, 0))
46 if (test__fixunsdfdi(0.5, 0))
48 if (test__fixunsdfdi(0.99, 0))
50 if (test__fixunsdfdi(1.0, 1))
52 if (test__fixunsdfdi(1.5, 1))
54 if (test__fixunsdfdi(1.99, 1))
56 if (test__fixunsdfdi(2.0, 2))
58 if (test__fixunsdfdi(2.01, 2))
60 if (test__fixunsdfdi(-0.5, 0))
62 if (test__fixunsdfdi(-0.99, 0))
65 if (test__fixunsdfdi(-1.0, 0)) // libgcc ignores "returns 0 for negative input" spec
67 if (test__fixunsdfdi(-1.5, 0))
69 if (test__fixunsdfdi(-1.99, 0))
71 if (test__fixunsdfdi(-2.0, 0))
73 if (test__fixunsdfdi(-2.01, 0))
77 if (test__fixunsdfdi(0x1.FFFFFEp+62, 0x7FFFFF8000000000LL))
79 if (test__fixunsdfdi(0x1.FFFFFCp+62, 0x7FFFFF0000000000LL))
83 if (test__fixunsdfdi(-0x1.FFFFFEp+62, 0))
85 if (test__fixunsdfdi(-0x1.FFFFFCp+62, 0))
89 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFFp+63, 0xFFFFFFFFFFFFF800LL))
91 if (test__fixunsdfdi(0x1.0000000000000p+63, 0x8000000000000000LL))
93 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFFp+62, 0x7FFFFFFFFFFFFC00LL))
95 if (test__fixunsdfdi(0x1.FFFFFFFFFFFFEp+62, 0x7FFFFFFFFFFFF800LL))
98 if (test__fixunsdfdi(0x1.p+64, 0xFFFFFFFFFFFFFFFFLL))
102 if (test__fixunsdfdi(-0x1.FFFFFFFFFFFFFp+62, 0))
104 if (test__fixunsdfdi(-0x1.FFFFFFFFFFFFEp+62, 0))