HomeSort by relevance Sort by last modified time
    Searched defs:expected (Results 26 - 50 of 871) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/builtins/Unit/
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;
muldf3vfp_test.c 25 double expected = a * b; local
26 if (actual != expected)
27 printf("error in test__muldf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
mulsf3vfp_test.c 25 float expected = a * b; local
26 if (actual != expected)
27 printf("error in test__mulsf3vfp(%f, %f) = %f, expected %f\n",
28 a, b, actual, expected);
29 return actual != expected;
nedf2vfp_test.c 26 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;
negdf2vfp_test.c 25 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;
negsf2vfp_test.c 25 float expected = -a; local
26 if (actual != expected)
27 printf("error in test__negsf2vfp(%f) = %f, expected %f\n",
28 a, actual, expected);
29 return actual != expected;
negvdi2_test.c 26 di_int expected = -a; local
27 if (x != expected)
28 printf("error in __negvdi2(0x%llX) = %lld, expected %lld\n",
29 a, x, expected);
30 return x != expected;
negvsi2_test.c 26 si_int expected = -a; local
27 if (x != expected)
28 printf("error in __negvsi2(0x%X) = %d, expected %d\n", a, x, expected);
29 return x != expected;
nesf2vfp_test.c 26 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;
subdf3vfp_test.c 25 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;
  /external/compiler-rt/test/builtins/Unit/ppc/
floatditf_test.c 12 DD expected; local
16 expected.hi = tests[i].hi;
17 expected.lo = tests[i].lo;
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
23 printf("\tExpected %La = ( %a , %a )\n", expected.ld, expected.hi, expected.lo);
floatunditf_test.c 12 DD expected; local
16 expected.hi = tests[i].hi;
17 expected.lo = tests[i].lo;
20 if ((computed.hi != expected.hi) || (computed.lo != expected.lo))
23 printf("\tExpected %La = ( %a , %a )\n", expected.ld, expected.hi, expected.lo);

Completed in 183 milliseconds

12 3 4 5 6 7 8 91011>>