Home
last modified time | relevance | path

Searched refs:expected_result (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/compiler-rt/test/builtins/Unit/
H A Dudivmodsi4_test.c12 su_int expected_result, su_int expected_rem) in test__udivmodsi4() argument
16 if (result != expected_result) { in test__udivmodsi4()
18 a, b, result, expected_result); in test__udivmodsi4()
H A Ddivmodsi4_test.c13 si_int expected_result, si_int expected_rem) in test__divmodsi4() argument
17 if (result != expected_result) { in test__divmodsi4()
19 a, b, result, expected_result); in test__divmodsi4()
/llvm-project-15.0.7/compiler-rt/test/builtins/Unit/arm/
H A Daeabi_uidivmod_test.c13 su_int expected_result, su_int expected_rem) in test__aeabi_uidivmod() argument
19 if (result != expected_result) { in test__aeabi_uidivmod()
21 a, b, result, expected_result); in test__aeabi_uidivmod()
H A Daeabi_idivmod_test.c13 si_int expected_result, si_int expected_rem) in test__aeabi_idivmod() argument
19 if (result != expected_result) { in test__aeabi_idivmod()
21 a, b, result, expected_result); in test__aeabi_idivmod()
/llvm-project-15.0.7/compiler-rt/test/builtins/Unit/ppc/
H A Dfixtfdi_test.c460 int64_t expected_result, computed_result; in main() local
465 expected_result = testCases[i].result; in main()
469 if (computed_result != expected_result) { in main()
471 printf("\tExpected %016llx ( %lld )\n", expected_result, expected_result); in main()
/llvm-project-15.0.7/lldb/unittests/Core/
H A DMangledTest.cpp63 ConstString expected_result("a::main"); in TEST() local
64 EXPECT_STREQ(expected_result.GetCString(), the_demangled.GetCString()); in TEST()
80 ConstString expected_result("D main"); in TEST() local
81 EXPECT_STREQ(expected_result.GetCString(), the_demangled.GetCString()); in TEST()
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbIndex.cpp35 auto expected_result = expr; \
36 if (!expected_result) \
37 return expected_result.takeError(); \
38 result_ptr = &expected_result.get(); \
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbinline.py166 def check_expression(self, expression, expected_result, use_summary=True): argument
177 expression, expected_result, answer)
178 self.assertTrue(answer == expected_result, report_str)
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.modifying.operations/
H A Dremove_copy.pass.cpp68 auto expected_result = remove_copy(in.cfbegin(), in.cfend(), expected.begin(), value); in test() local
69 size_t m = expected_result - expected.begin(); in test()
H A Dunique_copy_equal.pass.cpp98 auto expected_result = unique_copy(in.begin(), in.end(), expected.begin(), pred); in test() local
99 size_t m = expected_result - expected.begin(); in test()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/class.path/path.member/
H A Dpath.append.pass.cpp48 MultiStringType const& expected_result() const { in expected_result() function
135 Str EShort = (Ptr)TC.expected_result(); in doAppendSourceAllocTest()
244 const Ptr E = TC.expected_result(); in doAppendSourceTest()
385 assert(PathEq(Res, (const char*)TC.expected_result())); in main()
/llvm-project-15.0.7/pstl/test/std/algorithms/alg.modifying.operations/alg.copy/
H A Dcopy_if.pass.cpp99 auto expected_result = copy_if(in.cfbegin(), in.cfend(), expected.begin(), pred); in test() local
100 size_t m = expected_result - expected.begin(); in test()
/llvm-project-15.0.7/lldb/unittests/tools/lldb-server/tests/
H A DTestClient.cpp192 PacketResult expected_result) { in SendMessage() argument
198 if (result != expected_result) in SendMessage()
H A DTestClient.h75 PacketResult expected_result);