Home
last modified time | relevance | path

Searched refs:start_offset (Results 1 – 14 of 14) sorted by relevance

/art/libdexfile/dex/
Ddex_file_layout.h85 void CombineSection(uint32_t start_offset, uint32_t end_offset) { in CombineSection() argument
86 DCHECK_LE(start_offset, end_offset); in CombineSection()
88 start_offset_ = start_offset; in CombineSection()
91 start_offset_ = std::min(start_offset_, start_offset); in CombineSection()
Ddex_file.cc413 size_t start_offset = offset; in CreateTypeList() local
437 std::string descriptor(signature.data() + start_offset, offset - start_offset); in CreateTypeList()
/art/runtime/gc/accounting/
Dcard_table_test.cc113 size_t start_offset = 0; in TEST_F() local
115 start_offset = (start_offset + kObjectAlignment) % CardTable::kCardSize; in TEST_F()
119 uint8_t* start = cstart + start_offset; in TEST_F()
/art/runtime/
Dwrite_barrier-inl.h41 int start_offset ATTRIBUTE_UNUSED, in ForArrayWrite()
Dwrite_barrier.h48 int start_offset ATTRIBUTE_UNUSED,
Dclass_linker.cc327 uint32_t start_offset; // The offset from the start of the object. member
338 return lhs.size < rhs.size || (lhs.size == rhs.size && lhs.start_offset > rhs.start_offset); in operator ()()
392 DCHECK_ALIGNED(gap.start_offset, n); in ShuffleForward()
393 field->SetOffset(MemberOffset(gap.start_offset)); in ShuffleForward()
395 AddFieldGap(gap.start_offset + n, gap.start_offset + gap.size, gaps); in ShuffleForward()
8377 uint32_t start_offset = RoundUp(super_class->GetObjectSize(), in CreateReferenceInstanceOffsets() local
8379 uint32_t start_bit = (start_offset - mirror::kObjectHeaderSize) / in CreateReferenceInstanceOffsets()
/art/dex2oat/linker/
Doat_writer.cc2472 uint32_t start_offset, in WriteQuickeningInfoOffsetsMethodVisitor() argument
2476 start_offset_(start_offset), in WriteQuickeningInfoOffsetsMethodVisitor()
2531 size_t start_offset = RoundUp(initial_offset, 4u); in WriteQuickeningInfo() local
2533 off_t actual_offset = vdex_out->Seek(start_offset, kSeekSet); in WriteQuickeningInfo()
2534 if (actual_offset != static_cast<off_t>(start_offset)) { in WriteQuickeningInfo()
2536 << " Expected: " << start_offset in WriteQuickeningInfo()
2541 size_t current_offset = start_offset; in WriteQuickeningInfo()
2605 size_quickening_info_ = current_offset - start_offset; in WriteQuickeningInfo()
2616 vdex_size_ = start_offset + size_quickening_info_; in WriteQuickeningInfo()
2617 vdex_quickening_info_offset_ = start_offset; in WriteQuickeningInfo()
[all …]
Dimage_writer.cc2478 const size_t start_offset = bin_offset; in CalculateNewObjectOffsets() local
2505 image_info.bin_slot_sizes_[i] = bin_offset - start_offset; in CalculateNewObjectOffsets()
/art/dexlayout/
Ddex_writer.cc575 const uint32_t start_offset = stream->Tell(); in WriteCodeItem() local
598 stream->Clear(start_offset, stream->Tell() - start_offset); in WriteCodeItem()
610 uint32_t start_offset = stream->Tell(); in WriteCodeItems() local
617 start_offset, in WriteCodeItems()
Dcompact_dex_writer.cc42 const uint32_t start_offset = stream->Tell(); in WriteDebugInfoOffsetTable() local
104 return stream->Tell() - start_offset; in WriteDebugInfoOffsetTable()
Ddex_ir_builder.cc172 uint32_t start_offset,
621 uint32_t start_offset, in AddAnnotationsFromMapListSection() argument
623 uint32_t current_offset = start_offset; in AddAnnotationsFromMapListSection()
/art/runtime/mirror/
Dclass-inl.h213 uint32_t start_offset, in GetMethodsSliceRangeUnchecked() argument
215 DCHECK_LE(start_offset, end_offset); in GetMethodsSliceRangeUnchecked()
217 uint32_t size = end_offset - start_offset; in GetMethodsSliceRangeUnchecked()
228 return slice.SubArray(start_offset, size); in GetMethodsSliceRangeUnchecked()
Dclass.h1234 uint32_t start_offset,
/art/compiler/optimizing/
Dloop_optimization.cc2230 uint32_t start_offset = in ComputeAlignment() local
2232 return Alignment(BaseAlignment(), start_offset & (BaseAlignment() - 1u)); in ComputeAlignment()