Lines Matching refs:aligned_offset
281 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()
2206 aligned_offset = ptr_ - begin_; in CheckIntraSectionIterate()
2207 if (UNLIKELY(aligned_offset > size_)) { in CheckIntraSectionIterate()
2212 offset = aligned_offset; in CheckIntraSectionIterate()