Lines Matching refs:aligned_offset
384 bool DexFileVerifier::CheckPadding(uint32_t offset, uint32_t aligned_offset) {
385 if (offset < aligned_offset) {
386 if (!CheckPointerRange(begin_ + offset, begin_ + aligned_offset, "section")) {
389 while (offset < aligned_offset) {
991 uint32_t aligned_offset = (offset + alignment_mask) & ~alignment_mask;
994 if (!CheckPadding(offset, aligned_offset)) {
1129 offset_to_type_map_.Put(aligned_offset, type);
1132 aligned_offset = reinterpret_cast<uint32_t>(ptr_) - reinterpret_cast<uint32_t>(begin_);
1133 if (aligned_offset > size_) {
1138 offset = aligned_offset;