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

  /art/compiler/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/compiler/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/compiler/linker/arm/
relative_patcher_thumb2_test.cc 381 uint32_t diff_before = method1_offset - (method2_offset + 4u /* PC adjustment */); local
382 ASSERT_EQ(diff_before & 1u, 0u);
383 ASSERT_GE(diff_before, -1u << 9); // Simple encoding, -256 <= (diff >> 1) < 0.
384 auto method2_expected_code = GenNopsAndBl(0u, kBlMinus256 | ((diff_before >> 1) & 0xffu));
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 562 uint32_t diff_before = method1_offset - method2_offset; local
563 CHECK_ALIGNED(diff_before, 4u);
564 ASSERT_GE(diff_before, -1u << 27);
565 auto method2_expected_code = GenNopsAndBl(0u, kBlPlus0 | ((diff_before >> 2) & 0x03ffffffu));
    [all...]

Completed in 385 milliseconds