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

  /art/dex2oat/linker/x86/
relative_patcher_x86_test.cc 71 uint32_t diff_after = method2_offset - (method1_offset + kCallCode.size() /* PC adjustment */); local
74 static_cast<uint8_t>(diff_after),
75 static_cast<uint8_t>(diff_after >> 8),
76 static_cast<uint8_t>(diff_after >> 16),
77 static_cast<uint8_t>(diff_after >> 24)
  /art/dex2oat/linker/x86_64/
relative_patcher_x86_64_test.cc 91 uint32_t diff_after = method2_offset - (method1_offset + kCallCode.size() /* PC adjustment */); local
94 static_cast<uint8_t>(diff_after),
95 static_cast<uint8_t>(diff_after >> 8),
96 static_cast<uint8_t>(diff_after >> 16),
97 static_cast<uint8_t>(diff_after >> 24)
  /art/dex2oat/linker/arm/
relative_patcher_thumb2_test.cc 432 uint32_t diff_after = method2_offset - (method1_offset + 4u /* PC adjustment */); local
433 ASSERT_EQ(diff_after & 1u, 0u);
434 ASSERT_LT(diff_after >> 1, 1u << 8); // Simple encoding, (diff_after >> 1) fits into 8 bits.
436 0x00, 0xf0, static_cast<uint8_t>(diff_after >> 1), 0xf8
    [all...]
  /art/dex2oat/linker/arm64/
relative_patcher_arm64_test.cc 602 uint32_t diff_after = method2_offset - method1_offset; local
603 CHECK_ALIGNED(diff_after, 4u);
604 ASSERT_LT(diff_after >> 2, 1u << 8); // Simple encoding, (diff_after >> 2) fits into 8 bits.
605 const std::vector<uint8_t> method1_expected_code = RawCode({kBlPlus0 + (diff_after >> 2)});
    [all...]

Completed in 578 milliseconds