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

  /external/llvm/utils/testgen/
mc-bundling-x86-gen.py 88 aligned_offset = (inst_orig_offset + instlen) & ~(BUNDLE_SIZE - 1)
89 print_check(aligned_offset)
  /system/core/libunwindstack/
Memory.cpp 102 uint64_t aligned_offset = offset & ~(getpagesize() - 1); local
103 if (aligned_offset > static_cast<uint64_t>(buf.st_size) ||
108 size_ = buf.st_size - aligned_offset;
114 void* map = mmap(nullptr, size_, PROT_READ, MAP_PRIVATE, fd, aligned_offset);
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 180 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_); local
182 pending_thunks_.front()->GetPendingOffset() == aligned_offset) {
184 uint32_t aligned_code_delta = aligned_offset - offset;
191 offset = aligned_offset + pending_thunks_.front()->CodeSize();
200 aligned_offset = CompiledMethod::AlignCode(offset, instruction_set_);
202 DCHECK(pending_thunks_.empty() || pending_thunks_.front()->GetPendingOffset() > aligned_offset);
  /external/eigen/Eigen/src/SparseLU/
SparseLU_kernel_bmod.h 68 Index aligned_offset = internal::first_default_aligned(tempv.data()+segsize, PacketSize); local
70 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 1629 uint64_t aligned_offset = offset; local
2226 uint64_t aligned_offset = offset; local
    [all...]
  /system/core/libsparse/
output_file.c 706 int64_t aligned_offset; local
711 aligned_offset = offset & ~(4096 - 1);
712 aligned_diff = offset - aligned_offset;
719 aligned_offset);
  /art/runtime/
dex_file_verifier.cc 724 bool DexFileVerifier::CheckPadding(size_t offset, uint32_t aligned_offset) {
725 if (offset < aligned_offset) {
726 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) {
729 while (offset < aligned_offset) {
1615 size_t aligned_offset = (offset + alignment_mask) & ~alignment_mask; local
    [all...]
dex_file_verifier.h 100 bool CheckPadding(size_t offset, uint32_t aligned_offset);
  /art/compiler/linker/arm64/
relative_patcher_arm64.cc 158 uint32_t aligned_offset = CompiledMethod::AlignCode(offset, kArm64); local
165 CHECK_EQ(entry.second, aligned_offset + i * kAdrpThunkSize);
168 uint32_t aligned_code_delta = aligned_offset - offset;
175 offset = aligned_offset + current_method_thunks_.size();
  /art/compiler/
oat_writer.cc     [all...]

Completed in 378 milliseconds