Searched refs:aligned_offset (Results 1 – 3 of 3) sorted by relevance
504 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) { in CheckPadding() argument505 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() local1119 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()
63 bool CheckPadding(size_t offset, uint32_t aligned_offset);
589 uint32_t aligned_offset = compiled_method->AlignCode(offset_); in VisitMethod() local590 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()