Searched refs:expected (Results 51 - 75 of 3852) sorted by relevance

1234567891011>>

/external/compiler-rt/test/builtins/Unit/
H A Dadddf3vfp_test.c26 double expected = a + b; local
27 if (actual != expected)
28 printf("error in test__adddf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Daddsf3vfp_test.c26 float expected = a + b; local
27 if (actual != expected)
28 printf("error in test__addsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dbswapdi2_test.c23 int test__bswapdi2(uint64_t a, uint64_t expected) argument
26 if (actual != expected)
27 printf("error in test__bswapsi2(0x%0llX) = 0x%0llX, expected 0x%0llX\n",
28 a, actual, expected);
29 return actual != expected;
H A Dbswapsi2_test.c23 int test__bswapsi2(uint32_t a, uint32_t expected) argument
26 if (actual != expected)
27 printf("error in test__bswapsi2(0x%0X) = 0x%0X, expected 0x%0X\n",
28 a, actual, expected);
29 return actual != expected;
H A Ddivdf3vfp_test.c26 double expected = a / b; local
27 if (actual != expected)
28 printf("error in test__divdf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Ddivsf3vfp_test.c26 float expected = a / b; local
27 if (actual != expected)
28 printf("error in test__divsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Deqsf2vfp_test.c26 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;
H A Dfixsfsivfp_test.c25 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;
H A Dfixunsdfsivfp_test.c26 unsigned int expected = a; local
27 if (actual != expected)
28 printf("error in test__fixunsdfsivfp(%f) = %u, expected %u\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatsidfvfp_test.c26 double expected = a; local
27 if (actual != expected)
28 printf("error in test__ floatsidfvfp(%d) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatsisfvfp_test.c26 float expected = a; local
27 if (actual != expected)
28 printf("error in test__floatsisfvfp(%d) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatunssidfvfp_test.c26 double expected = a; local
27 if (actual != expected)
28 printf("error in test__floatunssidfvfp(%u) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dfloatunssisfvfp_test.c25 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;
H A Dltdf2vfp_test.c26 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;
H A Dmuldf3vfp_test.c26 double expected = a * b; local
27 if (actual != expected)
28 printf("error in test__muldf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dmulsf3vfp_test.c26 float expected = a * b; local
27 if (actual != expected)
28 printf("error in test__mulsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dnedf2vfp_test.c26 int expected = (a != b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __nedf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dnegdf2vfp_test.c25 double expected = -a; local
26 if (actual != expected)
27 printf("error in test__negdf2vfp(%f) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
H A Dnegsf2vfp_test.c26 float expected = -a; local
27 if (actual != expected)
28 printf("error in test__negsf2vfp(%f) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
H A Dnesf2vfp_test.c26 int expected = (a != b) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __nesf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dsubdf3vfp_test.c25 double expected = a - b; local
26 if (actual != expected)
27 printf("error in test__subdf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
H A Dsubsf3vfp_test.c26 float expected = a - b; local
27 if (actual != expected)
28 printf("error in test__subsf3vfp(%f, %f) = %f, expected %f\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dtruncdfsf2vfp_test.c26 float expected = a; local
27 if (actual != expected)
28 printf("error in test__truncdfsf2vfp(%f) = %f, expected %f\n",
29 a, actual, expected);
30 return actual != expected;
/external/compiler-rt/test/builtins/Unit/arm/
H A Daeabi_drsub_test.c22 int test__aeabi_drsub(double a, double b, double expected) argument
25 if (actual != expected)
26 printf("error in __aeabi_drsub(%f, %f) = %f, expected %f\n",
27 a, b, actual, expected);
28 return actual != expected;
H A Daeabi_frsub_test.c22 int test__aeabi_frsub(float a, float b, float expected) argument
25 if (actual != expected)
26 printf("error in __aeabi_frsub(%f, %f) = %f, expected %f\n",
27 a, b, actual, expected);
28 return actual != expected;

Completed in 256 milliseconds

1234567891011>>