Searched defs:aligned_offset (Results 1 - 2 of 2) sorted by relevance

/art/compiler/
H A Doat_writer.cc589 uint32_t aligned_offset = compiled_method->AlignCode(offset_); local
590 uint32_t aligned_code_delta = aligned_offset - offset_;
1049 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1050 uint32_t alignment_padding = aligned_offset - relative_offset; \
/art/runtime/
H A Ddex_file_verifier.cc504 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) { argument
505 if (offset < aligned_offset) {
506 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(byte), "section")) {
509 while (offset < aligned_offset) {
1116 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; local
1119 if (!CheckPadding(offset, aligned_offset)) {
1233 offset_to_type_map_.Put(aligned_offset, type);
1236 aligned_offset = ptr_ - begin_;
1237 if (UNLIKELY(aligned_offset > size_)) {
1242 offset = aligned_offset;
[all...]

Completed in 71 milliseconds