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

  /art/dex2oat/linker/x86/
relative_patcher_x86_test.cc 80 uint32_t diff_before = method1_offset - (method2_offset + kCallCode.size() /* PC adjustment */); local
83 static_cast<uint8_t>(diff_before),
84 static_cast<uint8_t>(diff_before >> 8),
85 static_cast<uint8_t>(diff_before >> 16),
86 static_cast<uint8_t>(diff_before >> 24)
  /art/dex2oat/linker/x86_64/
relative_patcher_x86_64_test.cc 100 uint32_t diff_before = method1_offset - (method2_offset + kCallCode.size() /* PC adjustment */); local
103 static_cast<uint8_t>(diff_before),
104 static_cast<uint8_t>(diff_before >> 8),
105 static_cast<uint8_t>(diff_before >> 16),
106 static_cast<uint8_t>(diff_before >> 24)
  /art/dex2oat/linker/arm/
relative_patcher_thumb2_test.cc 439 uint32_t diff_before = method1_offset - (method2_offset + 4u /* PC adjustment */); local
440 ASSERT_EQ(diff_before & 1u, 0u);
441 ASSERT_GE(diff_before, -1u << 9); // Simple encoding, -256 <= (diff >> 1) < 0.
442 auto method2_expected_code = GenNopsAndBl(0u, kBlMinus256 | ((diff_before >> 1) & 0xffu));
    [all...]
  /art/dex2oat/linker/arm64/
relative_patcher_arm64_test.cc 607 uint32_t diff_before = method1_offset - method2_offset; local
608 CHECK_ALIGNED(diff_before, 4u);
609 ASSERT_GE(diff_before, -1u << 27);
610 auto method2_expected_code = GenNopsAndBl(0u, kBlPlus0 | ((diff_before >> 2) & 0x03ffffffu));
    [all...]

Completed in 3863 milliseconds