HomeSort by relevance Sort by last modified time
    Searched defs:expected (Results 1 - 25 of 610) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/base/
sha1_unittest.cc 16 int expected[] = { 0xa9, 0x99, 0x3e, 0x36, local
24 EXPECT_EQ(expected[i], output[i] & 0xFF);
32 int expected[] = { 0x84, 0x98, 0x3e, 0x44, local
40 EXPECT_EQ(expected[i], output[i] & 0xFF);
47 int expected[] = { 0x34, 0xaa, 0x97, 0x3c, local
55 EXPECT_EQ(expected[i], output[i] & 0xFF);
63 unsigned char expected[] = { 0xa9, 0x99, 0x3e, 0x36, local
72 EXPECT_EQ(expected[i], output[i]);
81 unsigned char expected[] = { 0x84, 0x98, 0x3e, 0x44, local
90 EXPECT_EQ(expected[i], output[i])
98 unsigned char expected[] = { 0x34, 0xaa, 0x97, 0x3c, local
    [all...]
  /external/chromium/net/websockets/
websocket_net_log_params_unittest.cc 26 DictionaryValue expected; local
27 expected.Set("headers", list);
46 EXPECT_TRUE(expected.Equals(actual.get()));
  /external/compiler-rt/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;

Completed in 118 milliseconds

1 2 3 4 5 6 7 8 91011>>