HomeSort by relevance Sort by last modified time
    Searched defs:aligned_offset (Results 1 - 3 of 3) sorted by null

  /art/compiler/
oat_writer.cc 557 uint32_t aligned_offset = CompiledCode::AlignCode(relative_offset, instruction_set); \
558 uint32_t alignment_padding = aligned_offset - relative_offset; \
676 uint32_t aligned_offset = compiled_method->AlignCode(relative_offset); local
677 uint32_t aligned_code_delta = aligned_offset - relative_offset;
681 uint32_t expected_offset = file_offset + aligned_offset;
    [all...]
  /system/core/libsparse/
output_file.c 710 int64_t aligned_offset; local
715 aligned_offset = offset & ~(4096 - 1);
716 aligned_diff = offset - aligned_offset;
721 aligned_offset);
  /art/runtime/
dex_file_verifier.cc 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; local
994 if (!CheckPadding(offset, aligned_offset)) {
    [all...]

Completed in 96 milliseconds