OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:diff_before
(Results
1 - 4
of
4
) sorted by null
/art/compiler/linker/x86/
relative_patcher_x86_test.cc
79
uint32_t
diff_before
= method1_offset - (method2_offset + kCallCode.size() /* PC adjustment */);
local
82
static_cast<uint8_t>(
diff_before
),
83
static_cast<uint8_t>(
diff_before
>> 8),
84
static_cast<uint8_t>(
diff_before
>> 16),
85
static_cast<uint8_t>(
diff_before
>> 24)
/art/compiler/linker/x86_64/
relative_patcher_x86_64_test.cc
99
uint32_t
diff_before
= method1_offset - (method2_offset + kCallCode.size() /* PC adjustment */);
local
102
static_cast<uint8_t>(
diff_before
),
103
static_cast<uint8_t>(
diff_before
>> 8),
104
static_cast<uint8_t>(
diff_before
>> 16),
105
static_cast<uint8_t>(
diff_before
>> 24)
/art/compiler/linker/arm/
relative_patcher_thumb2_test.cc
240
uint32_t
diff_before
= method1_offset - (method2_offset + 4u /* PC adjustment */);
local
241
ASSERT_EQ(
diff_before
& 1u, 0u);
242
ASSERT_GE(
diff_before
, -1u << 9); // Simple encoding, -256 <= (diff >> 1) < 0.
243
auto method2_expected_code = GenNopsAndBl(0u, kBlMinus256 | ((
diff_before
>> 1) & 0xffu));
/art/compiler/linker/arm64/
relative_patcher_arm64_test.cc
489
uint32_t
diff_before
= method1_offset - method2_offset;
local
490
CHECK_ALIGNED(
diff_before
, 4u);
491
ASSERT_GE(
diff_before
, -1u << 27);
492
auto method2_expected_code = GenNopsAndBl(0u, kBlPlus0 | ((
diff_before
>> 2) & 0x03ffffffu));
[
all
...]
Completed in 1631 milliseconds