Lines Matching refs:aligned_offset
293 bool CheckPadding(uint32_t aligned_offset, DexFile::MapItemType type);
998 bool DexFileVerifier::CheckPadding(uint32_t aligned_offset, in CheckPadding() argument
1001 if (offset < aligned_offset) { in CheckPadding()
1002 if (!CheckListSize(OffsetToPtr(offset), aligned_offset - offset, sizeof(uint8_t), "section")) { in CheckPadding()
1006 ptr_ += aligned_offset - offset; in CheckPadding()
1009 while (offset < aligned_offset) { in CheckPadding()
2154 size_t aligned_offset = (PtrToOffset(ptr_) + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate() local
2157 if (!CheckPadding(aligned_offset, kType)) { in CheckIntraSectionIterate()
2292 if (aligned_offset == 0u) { in CheckIntraSectionIterate()
2296 DCHECK(offset_to_type_map_.find(aligned_offset) == offset_to_type_map_.end()); in CheckIntraSectionIterate()
2297 offset_to_type_map_.insert(std::pair<uint32_t, uint16_t>(aligned_offset, kType)); in CheckIntraSectionIterate()
2300 if (!PtrToOffset(ptr_, &aligned_offset)) { in CheckIntraSectionIterate()