Home
last modified time | relevance | path

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

/art/runtime/
Ddex_file_verifier.cc504 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) { in CheckPadding() argument
505 if (offset < aligned_offset) { in CheckPadding()
506 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(byte), "section")) { in CheckPadding()
509 while (offset < aligned_offset) { in CheckPadding()
1116 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate() local
1119 if (!CheckPadding(offset, aligned_offset)) { in CheckIntraSectionIterate()
1233 offset_to_type_map_.Put(aligned_offset, type); in CheckIntraSectionIterate()
1236 aligned_offset = ptr_ - begin_; in CheckIntraSectionIterate()
1237 if (UNLIKELY(aligned_offset > size_)) { in CheckIntraSectionIterate()
1242 offset = aligned_offset; in CheckIntraSectionIterate()
Ddex_file_verifier.h63 bool CheckPadding(size_t offset, uint32_t aligned_offset);
/art/compiler/
Doat_writer.cc589 uint32_t aligned_offset = compiled_method->AlignCode(offset_); in VisitMethod() local
590 uint32_t aligned_code_delta = aligned_offset - offset_; in VisitMethod()
1049 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \ in WriteCode()
1050 uint32_t alignment_padding = aligned_offset - relative_offset; \ in WriteCode()