HomeSort by relevance Sort by last modified time
    Searched defs:patch_offset (Results 1 - 3 of 3) sorted by null

  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 123 uint32_t ArmBaseRelativePatcher::CalculateDisplacement(uint32_t patch_offset,
126 uint32_t displacement = target_offset - patch_offset;
131 thunk_locations_[current_thunk_to_write_] > patch_offset);
133 thunk_locations_[current_thunk_to_write_] - patch_offset < max_positive_displacement_) {
134 displacement = thunk_locations_[current_thunk_to_write_] - patch_offset;
138 DCHECK_LT(thunk_locations_[current_thunk_to_write_ - 1], patch_offset);
139 displacement = thunk_locations_[current_thunk_to_write_ - 1] - patch_offset;
152 uint32_t patch_offset = unprocessed_patches_.front().second; local
153 DCHECK(thunk_locations_.empty() || thunk_locations_.back() <= patch_offset);
156 DCHECK_GT(quick_code_offset, patch_offset);
    [all...]
  /bootable/recovery/applypatch/
imgpatch.cpp 91 size_t patch_offset = Read8(normal_header+16); local
98 patch, patch_offset, sink, token, ctx);
131 size_t patch_offset = Read8(deflate_header+16); local
199 patch, patch_offset,
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 92 uint32_t patch_offset = quick_code_offset + patch.LiteralOffset(); local
93 if (NeedsErratum843419Thunk(code, patch.LiteralOffset(), patch_offset)) {
94 adrp_thunk_locations_.emplace_back(patch_offset, thunk_offset);
145 uint32_t patch_offset, uint32_t
149 DCHECK_EQ(patch_offset & 3u, 0u);
151 uint32_t displacement = CalculateDisplacement(patch_offset, target_offset & ~1u);
165 uint32_t patch_offset,
167 DCHECK_EQ(patch_offset & 3u, 0u);
172 uint32_t disp = target_offset - ((patch_offset - literal_offset + pc_insn_offset) & ~0xfffu);
180 adrp_thunk_locations_[processed_adrp_thunks_].first == patch_offset) {
    [all...]

Completed in 117 milliseconds