Searched refs:aligned_offset (Results 1 - 6 of 6) sorted by relevance

/art/compiler/linker/arm/
H A Drelative_patcher_arm_base.cc37 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
38 bool needs_thunk = ReserveSpaceProcessPatches(aligned_offset, MethodReference(nullptr, 0u),
39 aligned_offset);
41 thunk_locations_.push_back(aligned_offset);
42 offset = CompiledMethod::AlignCode(aligned_offset + thunk_code_.size(), instruction_set_);
51 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
52 if (UNLIKELY(aligned_offset == thunk_locations_[current_thunk_to_write_])) {
54 uint32_t aligned_code_delta = aligned_offset - offset;
61 uint32_t thunk_end_offset = aligned_offset + thunk_code_.size();
/art/compiler/linker/
H A Drelative_patcher_test.h89 uint32_t aligned_offset = compiled_method->AlignCode(offset); local
90 uint32_t aligned_code_delta = aligned_offset - offset;
119 uint32_t aligned_offset = compiled_method->AlignCode(offset); local
120 uint32_t aligned_code_delta = aligned_offset - offset;
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64.cc109 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, kArm64); local
116 CHECK_EQ(entry.second, aligned_offset + i * kAdrpThunkSize);
119 uint32_t aligned_code_delta = aligned_offset - offset;
126 offset = aligned_offset + current_method_thunks_.size();
/art/runtime/
H A Ddex_file_verifier.h63 bool CheckPadding(size_t offset, uint32_t aligned_offset);
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(uint8_t), "section")) {
509 while (offset < aligned_offset) {
1143 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; local
1146 if (!CheckPadding(offset, aligned_offset)) {
1260 offset_to_type_map_.Put(aligned_offset, type);
1263 aligned_offset = ptr_ - begin_;
1264 if (UNLIKELY(aligned_offset > size_)) {
1269 offset = aligned_offset;
[all...]
/art/compiler/
H A Doat_writer.cc706 uint32_t aligned_offset = compiled_method->AlignCode(offset_); local
707 uint32_t aligned_code_delta = aligned_offset - offset_;
1332 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
1333 uint32_t alignment_padding = aligned_offset - relative_offset; \

Completed in 280 milliseconds