Searched defs:expected (Results 101 - 125 of 775) sorted by relevance

1234567891011>>

/external/compiler-rt/test/builtins/Unit/
H A Dsubvsi3_test.c27 si_int expected = a - b; local
28 if (x != expected)
29 printf("error in test__subvsi3(0x%X, 0x%X) = %d, expected %d\n",
30 a, b, x, expected);
31 return x != expected;
H A Dtruncdfhf2_test.c20 int test__truncdfhf2(double a, uint16_t expected) argument
23 int ret = compareResultH(x, expected);
27 "expected %#.4x\n", a, x, fromRep16(expected));
H A Dtruncsfhf2_test.c20 int test__truncsfhf2(float a, uint16_t expected) argument
23 int ret = compareResultH(x, expected);
27 "expected %#.4x\n", a, x, fromRep16(expected));
H A Dtrunctfdf2_test.c22 int test__trunctfdf2(long double a, uint64_t expected) argument
25 int ret = compareResultD(x, expected);
30 "expected %lf\n", a, x, fromRep64(expected));
H A Dtrunctfsf2_test.c22 int test__trunctfsf2(long double a, uint32_t expected) argument
25 int ret = compareResultF(x, expected);
29 "expected %f\n", a, x, fromRep32(expected));
H A Ducmpdi2_test.c23 int test__ucmpdi2(du_int a, du_int b, si_int expected) argument
26 if (x != expected)
27 printf("error in __ucmpdi2(0x%llX, 0x%llX) = %d, expected %d\n",
28 a, b, x, expected);
29 return x != expected;
H A Dunorddf2vfp_test.c26 int expected = (isnan(a) || isnan(b)) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __unorddf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
H A Dunordsf2vfp_test.c26 int expected = (isnan(a) || isnan(b)) ? 1 : 0; local
27 if (actual != expected)
28 printf("error in __unordsf2vfp(%f, %f) = %d, expected %d\n",
29 a, b, actual, expected);
30 return actual != expected;
/external/elfutils/src/tests/
H A Dhash.c27 check (const char *name, unsigned long int expected) argument
31 return actual != expected;
40 /* Check some names. We know what the expected result is. */
H A Dmsg_tst.c29 const char *expected; member in struct:__anon4834
95 if (strcmp (str, libelf_msgs[cnt].expected) != 0)
97 printf ("libelf msg %zu: expected \"%s\", got \"%s\"\n",
98 cnt, libelf_msgs[cnt].expected, str);
/external/google-breakpad/src/processor/
H A Dsynth_minidump_unittest.cc77 string expected("order\0\0\0\x06\x32\x28\x7e\xc2", 13);
78 EXPECT_EQ(expected, contents);
91 string expected("section contents"
96 EXPECT_EQ(expected, contents);
109 string expected("section contents"
114 EXPECT_EQ(contents, expected);
242 static const char expected[] = local
245 string expected_string(expected, sizeof(expected) - 1);
/external/junit/src/org/junit/internal/
H A DExactComparisonCriteria.java7 protected void assertElementsEqual(Object expected, Object actual) { argument
8 Assert.assertEquals(expected, actual);
/external/libcxx/test/std/re/re.traits/
H A Dlookup_classname.pass.cpp26 typename std::regex_traits<char_type>::char_class_type expected,
31 assert(t.lookup_classname(F(A), F(A + t.length(A)), icase) == expected);
25 test(const char_type* A, typename std::regex_traits<char_type>::char_class_type expected, bool icase = false) argument
H A Dlookup_collatename.pass.cpp30 test(const char_type* A, const std::basic_string<char_type>& expected) argument
34 assert(t.lookup_collatename(F(A), F(A + t.length(A))) == expected);
/external/libcxx/test/std/strings/basic.string/string.capacity/
H A Dresize_size.pass.cpp22 test(S s, typename S::size_type n, S expected) argument
29 assert(s == expected);
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_append/
H A Diterator.pass.cpp23 test(S s, It first, It last, S expected) argument
27 assert(s == expected);
H A Dpointer.pass.cpp22 test(S s, const typename S::value_type* str, S expected) argument
26 assert(s == expected);
H A Dpointer_size.pass.cpp23 test(S s, const typename S::value_type* str, typename S::size_type n, S expected) argument
27 assert(s == expected);
H A Dpush_back.pass.cpp21 test(S s, typename S::value_type c, S expected) argument
25 assert(s == expected);
H A Dsize_char.pass.cpp22 test(S s, typename S::size_type n, typename S::value_type c, S expected) argument
26 assert(s == expected);
H A Dstring.pass.cpp22 test(S s, S str, S expected) argument
26 assert(s == expected);
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_assign/
H A Diterator.pass.cpp23 test(S s, It first, It last, S expected) argument
27 assert(s == expected);
H A Dpointer.pass.cpp22 test(S s, const typename S::value_type* str, S expected) argument
26 assert(s == expected);
H A Dpointer_size.pass.cpp23 test(S s, const typename S::value_type* str, typename S::size_type n, S expected) argument
27 assert(s == expected);
H A Drv_string.pass.cpp23 test(S s, S str, S expected) argument
27 assert(s == expected);

Completed in 327 milliseconds

1234567891011>>