Home
last modified time | relevance | path

Searched refs:aligned_offset (Results 1 – 4 of 4) sorted by relevance

/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc208 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks() local
210 pending_thunks_.front()->GetPendingOffset() == aligned_offset) { in WriteThunks()
212 uint32_t aligned_code_delta = aligned_offset - offset; in WriteThunks()
219 offset = aligned_offset + pending_thunks_.front()->CodeSize(); in WriteThunks()
228 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); in WriteThunks()
230 DCHECK(pending_thunks_.empty() || pending_thunks_.front()->GetPendingOffset() > aligned_offset); in WriteThunks()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc169 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, InstructionSet::kArm64); in WriteThunks() local
176 CHECK_EQ(entry.second, aligned_offset + i * kAdrpThunkSize); in WriteThunks()
179 uint32_t aligned_code_delta = aligned_offset - offset; in WriteThunks()
186 offset = aligned_offset + current_method_thunks_.size(); in WriteThunks()
/art/libdexfile/dex/
Ddex_file_verifier.cc281 bool CheckPadding(size_t offset, uint32_t aligned_offset, DexFile::MapItemType type);
925 uint32_t aligned_offset, in CheckPadding() argument
927 if (offset < aligned_offset) { in CheckPadding()
928 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) { in CheckPadding()
931 while (offset < aligned_offset) { in CheckPadding()
2061 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate() local
2064 if (!CheckPadding(offset, aligned_offset, kType)) { in CheckIntraSectionIterate()
2198 if (aligned_offset == 0u) { in CheckIntraSectionIterate()
2202 DCHECK(offset_to_type_map_.find(aligned_offset) == offset_to_type_map_.end()); in CheckIntraSectionIterate()
2203 offset_to_type_map_.insert(std::pair<uint32_t, uint16_t>(aligned_offset, kType)); in CheckIntraSectionIterate()
[all …]
/art/dex2oat/linker/
Doat_writer.cc3001 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset + 4, instruction_set); \ in WriteCode()
3002 uint32_t alignment_padding = aligned_offset - relative_offset; \ in WriteCode()