HomeSort by relevance Sort by last modified time
    Searched defs:expected_code (Results 1 - 7 of 7) sorted by null

  /art/compiler/linker/x86/
relative_patcher_x86_test.cc 51 static const uint8_t expected_code[] = { local
54 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
100 static const uint8_t expected_code[] = { local
107 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
130 static const uint8_t expected_code[] = { local
139 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
162 static const uint8_t expected_code[] = { local
171 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
  /art/compiler/linker/x86_64/
relative_patcher_x86_64_test.cc 71 static const uint8_t expected_code[] = { local
74 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
120 static const uint8_t expected_code[] = { local
127 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
143 static const uint8_t expected_code[] = { local
150 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
167 static const uint8_t expected_code[] = { local
174 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
  /external/valgrind/none/tests/amd64-darwin/
bug341419.c 117 int expected_code = (using_int3 ? 1 : 0); local
118 ASSERT_EQ(si->si_code, expected_code);
  /external/valgrind/none/tests/x86-darwin/
bug341419.c 118 int expected_code = (using_int3 ? 1 : 0); local
119 ASSERT_EQ(si->si_code, expected_code);
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 100 ArrayRef<const uint8_t> expected_code(patcher->thunk_code_);
101 if (output_.size() < thunk_offset + expected_code.size()) {
103 << "thunk_offset + expected_code.size() == " << (thunk_offset + expected_code.size());
106 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size());
107 if (linked_code == expected_code) {
111 DumpDiff(expected_code, linked_code);
197 const uint8_t expected_code[] = { local
204 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
214 static const uint8_t expected_code[] = local
258 auto expected_code = GenNopsAndBl(0u, kBlMinus256 | ((diff >> 1) & 0xffu)); local
287 auto expected_code = GenNopsAndBl(3u, kBlPlus0 | ((diff >> 1) & 0xffu)); local
310 auto expected_code = GenNopsAndBl(3u, kBlPlusMax); local
332 auto expected_code = GenNopsAndBl(2u, kBlMinusMax); local
362 auto expected_code = GenNopsAndBl(2u, 0xf3ffd700 | ((diff >> 1) & 0xffu)); local
390 auto expected_code = GenNopsAndBl(3u, kBlPlus0 | ((diff >> 1) & 0xffu)); local
    [all...]
  /system/update_engine/payload_consumer/
download_action_unittest.cc 67 explicit DownloadActionTestProcessorDelegate(ErrorCode expected_code)
69 expected_code_(expected_code) {}
180 ErrorCode expected_code = ErrorCode::kSuccess; local
182 expected_code = ErrorCode::kDownloadWriteError;
183 DownloadActionTestProcessorDelegate delegate(expected_code);
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 131 ArrayRef<const uint8_t> expected_code(patcher->thunk_code_);
132 if (output_.size() < thunk_offset + expected_code.size()) {
134 << "thunk_offset + expected_code.size() == " << (thunk_offset + expected_code.size());
137 ArrayRef<const uint8_t> linked_code(&output_[thunk_offset], expected_code.size());
138 if (linked_code == expected_code) {
142 DumpDiff(expected_code, linked_code);
218 auto expected_code = GenNopsAndAdrpLdr(num_nops, method1_offset, target_offset); local
219 EXPECT_TRUE(CheckLinkedMethod(MethodRef(1u), ArrayRef<const uint8_t>(expected_code)));
242 auto expected_code = GenNopsAndAdrpAdd(num_nops, method1_offset, string_offset) local
293 auto expected_code = GenNopsAndAdrpAndUse(num_nops, method1_offset, target_offset, use_insn); local
314 auto expected_code = GenNopsAndAdrpAndUse(num_nops, method1_offset, target_offset, use_insn); local
463 static const uint8_t expected_code[] = { local
507 auto expected_code = GenNopsAndBl(0u, kBlPlus0 | ((diff >> 2) & 0x03ffffffu)); local
538 auto expected_code = GenNopsAndBl(1u, kBlPlus0 | (diff >> 2)); local
567 auto expected_code = GenNopsAndBl(1u, kBlPlusMax); local
591 auto expected_code = GenNopsAndBl(0u, kBlMinusMax); local
624 auto expected_code = GenNopsAndBl(0u, kBlPlus0 | (diff >> 2)); local
654 auto expected_code = GenNopsAndBl(1u, kBlPlus0 | (diff >> 2)); local
    [all...]

Completed in 352 milliseconds