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

  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 38 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
39 bool needs_thunk = ReserveSpaceProcessPatches(aligned_offset,
41 aligned_offset);
45 DCHECK_LE(aligned_offset - unprocessed_patches_.front().second, max_positive_displacement_);
48 thunk_locations_.push_back(aligned_offset);
49 offset = CompiledMethod::AlignCode(aligned_offset + thunk_code_.size(), instruction_set_);
58 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
59 if (UNLIKELY(aligned_offset == thunk_locations_[current_thunk_to_write_])) {
61 uint32_t aligned_code_delta = aligned_offset - offset;
68 uint32_t thunk_end_offset = aligned_offset + thunk_code_.size()
    [all...]
  /external/llvm/utils/testgen/
mc-bundling-x86-gen.py 88 aligned_offset = (inst_orig_offset + instlen) & ~(BUNDLE_SIZE - 1)
89 print_check(aligned_offset)
  /art/compiler/linker/
relative_patcher_test.h 109 uint32_t aligned_offset = compiled_method->AlignCode(offset); local
110 uint32_t aligned_code_delta = aligned_offset - offset;
139 uint32_t aligned_offset = compiled_method->AlignCode(offset); local
140 uint32_t aligned_code_delta = aligned_offset - offset;
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 119 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, kArm64); local
126 CHECK_EQ(entry.second, aligned_offset + i * kAdrpThunkSize);
129 uint32_t aligned_code_delta = aligned_offset - offset;
136 offset = aligned_offset + current_method_thunks_.size();
  /external/eigen/Eigen/src/SparseLU/
SparseLU_kernel_bmod.h 69 Index aligned_offset = internal::first_aligned(tempv.data()+segsize, PacketSize); local
71 Map<Matrix<Scalar,Dynamic,1>, 0, OuterStride<> > l(tempv.data()+segsize+aligned_offset+aligned_with_B_offset, nrow, OuterStride<>(ldl) );
  /external/libdrm/radeon/
radeon_surface.c 1619 uint64_t aligned_offset = offset; local
2216 uint64_t aligned_offset = offset; local
    [all...]
  /system/core/libsparse/
output_file.c 699 int64_t aligned_offset; local
704 aligned_offset = offset & ~(4096 - 1);
705 aligned_diff = offset - aligned_offset;
710 aligned_offset);
  /art/runtime/
dex_file_verifier.cc 581 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) {
582 if (offset < aligned_offset) {
583 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) {
586 while (offset < aligned_offset) {
1346 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; local
    [all...]
dex_file_verifier.h 82 bool CheckPadding(size_t offset, uint32_t aligned_offset);
  /art/compiler/
oat_writer.cc     [all...]

Completed in 1093 milliseconds