Lines Matching refs:aligned_offset
581 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) { in CheckPadding() argument
582 if (offset < aligned_offset) { in CheckPadding()
583 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) { in CheckPadding()
586 while (offset < aligned_offset) { in CheckPadding()
1346 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; in CheckIntraSectionIterate() local
1349 if (!CheckPadding(offset, aligned_offset)) { in CheckIntraSectionIterate()
1463 if (aligned_offset == 0u) { in CheckIntraSectionIterate()
1467 DCHECK(offset_to_type_map_.Find(aligned_offset) == offset_to_type_map_.end()); in CheckIntraSectionIterate()
1468 offset_to_type_map_.Insert(std::pair<uint32_t, uint16_t>(aligned_offset, type)); in CheckIntraSectionIterate()
1471 aligned_offset = ptr_ - begin_; in CheckIntraSectionIterate()
1472 if (UNLIKELY(aligned_offset > size_)) { in CheckIntraSectionIterate()
1477 offset = aligned_offset; in CheckIntraSectionIterate()