HomeSort by relevance Sort by last modified time
    Searched refs:method2_offset (Results 1 - 5 of 5) sorted by null

  /art/compiler/linker/
multi_oat_relative_patcher_test.cc 174 uint32_t method2_offset = 0x1230; local
177 uint32_t method2_offset_adjusted = patcher_.ReserveSpace(method2_offset, method, ref2);
178 ASSERT_EQ(adjustment1 + method2_offset, mock_->last_reserve_offset_);
180 ASSERT_EQ(method2_offset + method2_reserve_adjustment, method2_offset_adjusted);
219 uint32_t method2_offset = 0x1230; local
224 uint32_t method2_offset_adjusted = patcher_.WriteThunks(&vos, method2_offset);
225 ASSERT_EQ(adjustment1 + method2_offset, mock_->last_write_offset_);
226 ASSERT_EQ(method2_offset + method2_alignment_size + method2_call_thunk_size,
  /art/compiler/linker/x86/
relative_patcher_x86_test.cc 69 uint32_t method2_offset = GetMethodOffset(2u); local
70 uint32_t diff_after = method2_offset - (method1_offset + kCallCode.size() /* PC adjustment */);
79 uint32_t diff_before = method1_offset - (method2_offset + kCallCode.size() /* PC adjustment */);
  /art/compiler/linker/x86_64/
relative_patcher_x86_64_test.cc 89 uint32_t method2_offset = GetMethodOffset(2u); local
90 uint32_t diff_after = method2_offset - (method1_offset + kCallCode.size() /* PC adjustment */);
99 uint32_t diff_before = method1_offset - (method2_offset + kCallCode.size() /* PC adjustment */);
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 60 const uint32_t method2_offset = local
63 const uint32_t method2_size = (method3_offset - sizeof(OatQuickMethodHeader) - method2_offset);
74 CHECK_EQ(GetMethodOffset(2), method2_offset);
232 uint32_t method2_offset = GetMethodOffset(2u); local
233 uint32_t diff_after = method2_offset - (method1_offset + 4u /* PC adjustment */);
240 uint32_t diff_before = method1_offset - (method2_offset + 4u /* PC adjustment */);
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 481 uint32_t method2_offset = GetMethodOffset(2u); local
482 uint32_t diff_after = method2_offset - method1_offset;
489 uint32_t diff_before = method1_offset - method2_offset;
    [all...]

Completed in 770 milliseconds