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

  /art/compiler/linker/x86/
relative_patcher_x86_test.cc 70 uint32_t diff_after = method2_offset - (method1_offset + kCallCode.size() /* PC adjustment */); local
73 static_cast<uint8_t>(diff_after),
74 static_cast<uint8_t>(diff_after >> 8),
75 static_cast<uint8_t>(diff_after >> 16),
76 static_cast<uint8_t>(diff_after >> 24)
  /art/compiler/linker/x86_64/
relative_patcher_x86_64_test.cc 90 uint32_t diff_after = method2_offset - (method1_offset + kCallCode.size() /* PC adjustment */); local
93 static_cast<uint8_t>(diff_after),
94 static_cast<uint8_t>(diff_after >> 8),
95 static_cast<uint8_t>(diff_after >> 16),
96 static_cast<uint8_t>(diff_after >> 24)
  /art/compiler/linker/arm/
relative_patcher_thumb2_test.cc 233 uint32_t diff_after = method2_offset - (method1_offset + 4u /* PC adjustment */); local
234 ASSERT_EQ(diff_after & 1u, 0u);
235 ASSERT_LT(diff_after >> 1, 1u << 8); // Simple encoding, (diff_after >> 1) fits into 8 bits.
237 0x00, 0xf0, static_cast<uint8_t>(diff_after >> 1), 0xf8
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 482 uint32_t diff_after = method2_offset - method1_offset; local
483 CHECK_ALIGNED(diff_after, 4u);
484 ASSERT_LT(diff_after >> 2, 1u << 8); // Simple encoding, (diff_after >> 2) fits into 8 bits.
486 static_cast<uint8_t>(diff_after >> 2), 0x00, 0x00, 0x94
    [all...]

Completed in 112 milliseconds