Home | History | Annotate | Download | only in Unit

Lines Matching refs:test__fixunssfdi

29 int test__fixunssfdi(float a, du_int expected)
44 if (test__fixunssfdi(0.0F, 0))
47 if (test__fixunssfdi(0.5F, 0))
49 if (test__fixunssfdi(0.99F, 0))
51 if (test__fixunssfdi(1.0F, 1))
53 if (test__fixunssfdi(1.5F, 1))
55 if (test__fixunssfdi(1.99F, 1))
57 if (test__fixunssfdi(2.0F, 2))
59 if (test__fixunssfdi(2.01F, 2))
61 if (test__fixunssfdi(-0.5F, 0))
63 if (test__fixunssfdi(-0.99F, 0))
66 if (test__fixunssfdi(-1.0F, 0)) // libgcc ignores "returns 0 for negative input" spec
68 if (test__fixunssfdi(-1.5F, 0))
70 if (test__fixunssfdi(-1.99F, 0))
72 if (test__fixunssfdi(-2.0F, 0))
74 if (test__fixunssfdi(-2.01F, 0))
78 if (test__fixunssfdi(0x1.FFFFFEp+63F, 0xFFFFFF0000000000LL))
80 if (test__fixunssfdi(0x1.000000p+63F, 0x8000000000000000LL))
82 if (test__fixunssfdi(0x1.FFFFFEp+62F, 0x7FFFFF8000000000LL))
84 if (test__fixunssfdi(0x1.FFFFFCp+62F, 0x7FFFFF0000000000LL))
88 if (test__fixunssfdi(-0x1.FFFFFEp+62F, 0x0000000000000000LL))
90 if (test__fixunssfdi(-0x1.FFFFFCp+62F, 0x0000000000000000LL))