Searched defs:method2_offset (Results 1 - 5 of 5) sorted by relevance

/art/compiler/linker/x86/
H A Drelative_patcher_x86_test.cc69 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/
H A Drelative_patcher_x86_64_test.cc89 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/
H A Dmulti_oat_relative_patcher_test.cc174 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/arm/
H A Drelative_patcher_thumb2_test.cc60 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/
H A Drelative_patcher_arm64_test.cc481 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;

Completed in 110 milliseconds