| /src/sys/external/bsd/compiler_rt/dist/test/Unit/ |
| adddf3vfp_test.c | 25 double expected = a + b; local 26 if (actual != expected) 27 printf("error in test__adddf3vfp(%f, %f) = %f, expected %f\n", 28 a, b, actual, expected); 29 return actual != expected;
|
| addsf3vfp_test.c | 25 float expected = a + b; local 26 if (actual != expected) 27 printf("error in test__addsf3vfp(%f, %f) = %f, expected %f\n", 28 a, b, actual, expected); 29 return actual != expected;
|
| addvdi3_test.c | 26 di_int expected = a + b; local 27 if (x != expected) 28 printf("error in test__addvdi3(0x%llX, 0x%llX) = %lld, expected %lld\n", 29 a, b, x, expected); 30 return x != expected;
|
| addvsi3_test.c | 26 si_int expected = a + b; local 27 if (x != expected) 28 printf("error in test__addvsi3(0x%X, 0x%X) = %d, expected %d\n", 29 a, b, x, expected); 30 return x != expected;
|
| divdf3vfp_test.c | 25 double expected = a / b; local 26 if (actual != expected) 27 printf("error in test__divdf3vfp(%f, %f) = %f, expected %f\n", 28 a, b, actual, expected); 29 return actual != expected;
|
| divsf3vfp_test.c | 25 float expected = a / b; local 26 if (actual != expected) 27 printf("error in test__divsf3vfp(%f, %f) = %f, expected %f\n", 28 a, b, actual, expected); 29 return actual != expected;
|
| eqdf2vfp_test.c | 26 int expected = (a == b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __eqdf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| eqsf2vfp_test.c | 26 int expected = (a == b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __eqsf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| extebdsfdf2vfp_test.c | 25 double expected = a; local 26 if (actual != expected) 27 printf("error in test__extendsfdf2vfp(%f) = %f, expected %f\n", 28 a, actual, expected); 29 return actual != expected;
|
| fixdfsivfp_test.c | 25 int expected = a; local 26 if (actual != expected) 27 printf("error in test__fixdfsivfp(%f) = %d, expected %d\n", 28 a, actual, expected); 29 return actual != expected;
|
| fixsfsivfp_test.c | 25 int expected = a; local 26 if (actual != expected) 27 printf("error in test__fixsfsivfp(%f) = %u, expected %u\n", 28 a, actual, expected); 29 return actual != expected;
|
| fixunsdfsivfp_test.c | 25 unsigned int expected = a; local 26 if (actual != expected) 27 printf("error in test__fixunsdfsivfp(%f) = %u, expected %u\n", 28 a, actual, expected); 29 return actual != expected;
|
| fixunssfsivfp_test.c | 25 unsigned int expected = a; local 26 if (actual != expected) 27 printf("error in test__fixunssfsivfp(%f) = %u, expected %u\n", 28 a, actual, expected); 29 return actual != expected;
|
| floatsidfvfp_test.c | 25 double expected = a; local 26 if (actual != expected) 27 printf("error in test__ floatsidfvfp(%d) = %f, expected %f\n", 28 a, actual, expected); 29 return actual != expected;
|
| floatsisfvfp_test.c | 25 float expected = a; local 26 if (actual != expected) 27 printf("error in test__floatsisfvfp(%d) = %f, expected %f\n", 28 a, actual, expected); 29 return actual != expected;
|
| floatunssidfvfp_test.c | 25 double expected = a; local 26 if (actual != expected) 27 printf("error in test__floatunssidfvfp(%u) = %f, expected %f\n", 28 a, actual, expected); 29 return actual != expected;
|
| floatunssisfvfp_test.c | 25 float expected = a; local 26 if (actual != expected) 27 printf("error in test__floatunssisfvfp(%u) = %f, expected %f\n", 28 a, actual, expected); 29 return actual != expected;
|
| gedf2vfp_test.c | 26 int expected = (a >= b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __gedf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| gesf2vfp_test.c | 26 int expected = (a >= b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __gesf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| gtdf2vfp_test.c | 26 int expected = (a > b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __gtdf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| gtsf2vfp_test.c | 26 int expected = (a > b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __gtsf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| ledf2vfp_test.c | 26 int expected = (a <= b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __ledf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| lesf2vfp_test.c | 26 int expected = (a <= b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __lesf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| ltdf2vfp_test.c | 26 int expected = (a < b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __ltdf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|
| ltsf2vfp_test.c | 26 int expected = (a < b) ? 1 : 0; local 27 if (actual != expected) 28 printf("error in __ltsf2vfp(%f, %f) = %d, expected %d\n", 29 a, b, actual, expected); 30 return actual != expected;
|