OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:patch_ptr
(Results
1 - 2
of
2
) sorted by null
/art/compiler/
elf_patcher.cc
131
uint32_t* ElfPatcher::GetPatchLocation(uintptr_t
patch_ptr
) {
132
CHECK_GE(
patch_ptr
, reinterpret_cast<uintptr_t>(oat_file_->Begin()));
133
CHECK_LE(
patch_ptr
, reinterpret_cast<uintptr_t>(oat_file_->End()));
134
uintptr_t off =
patch_ptr
- reinterpret_cast<uintptr_t>(oat_file_->Begin());
149
uintptr_t
patch_ptr
= reinterpret_cast<uintptr_t>(base + patch->GetLiteralOffset());
local
150
uint32_t* patch_location = GetPatchLocation(
patch_ptr
);
181
uintptr_t loc =
patch_ptr
- (reinterpret_cast<uintptr_t>(oat_file_->Begin()) +
183
CHECK_GT(
patch_ptr
, reinterpret_cast<uintptr_t>(oat_file_->Begin()) +
elf_patcher.h
95
uint32_t* GetPatchLocation(uintptr_t
patch_ptr
);
Completed in 565 milliseconds