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.cc414 size_t start_offset = offset; in CreateTypeList() local
438 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.h48 int start_offset ATTRIBUTE_UNUSED,
Dwrite_barrier-inl.h41 int start_offset ATTRIBUTE_UNUSED, in ForArrayWrite()
Dclass_linker.cc611 uint32_t start_offset; // The offset from the start of the object. member
622 return lhs.size < rhs.size || (lhs.size == rhs.size && lhs.start_offset > rhs.start_offset); in operator ()()
676 DCHECK_ALIGNED(gap.start_offset, n); in ShuffleForward()
677 field->SetOffset(MemberOffset(gap.start_offset)); in ShuffleForward()
679 AddFieldGap(gap.start_offset + n, gap.start_offset + gap.size, gaps); in ShuffleForward()
8659 uint32_t start_offset = RoundUp(super_class->GetObjectSize(), in CreateReferenceInstanceOffsets() local
8661 uint32_t start_bit = (start_offset - mirror::kObjectHeaderSize) / in CreateReferenceInstanceOffsets()
/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.cc173 uint32_t start_offset,
622 uint32_t start_offset, in AddAnnotationsFromMapListSection() argument
624 uint32_t current_offset = start_offset; in AddAnnotationsFromMapListSection()
/art/runtime/mirror/
Dclass-inl.h215 uint32_t start_offset, in GetMethodsSliceRangeUnchecked() argument
217 DCHECK_LE(start_offset, end_offset); in GetMethodsSliceRangeUnchecked()
219 uint32_t size = end_offset - start_offset; in GetMethodsSliceRangeUnchecked()
230 return slice.SubArray(start_offset, size); in GetMethodsSliceRangeUnchecked()
Dclass.h1352 uint32_t start_offset,
/art/dex2oat/linker/
Doat_writer.cc2489 uint32_t start_offset, in WriteQuickeningInfoOffsetsMethodVisitor() argument
2493 start_offset_(start_offset), in WriteQuickeningInfoOffsetsMethodVisitor()
2545 size_t start_offset = RoundUp(vdex_size_, 4u); in WriteQuickeningInfo() local
2546 const size_t padding_bytes = start_offset - vdex_size_; in WriteQuickeningInfo()
2553 uint32_t extra_bytes_offset = start_offset + quicken_info_offset; in WriteQuickeningInfo()
2579 size_quickening_info_ = current_offset - start_offset; in WriteQuickeningInfo()
2588 vdex_quickening_info_offset_ = start_offset; in WriteQuickeningInfo()
2589 vdex_size_ = start_offset + size_quickening_info_; in WriteQuickeningInfo()
2605 size_t start_offset = RoundUp(initial_offset, 4u); in WriteVerifierDeps() local
2607 vdex_size_ = start_offset; in WriteVerifierDeps()
[all …]
Dimage_writer.cc3041 for (const size_t start_offset : image_info.padding_offsets_) { in CopyAndFixupObjects() local
3042 const size_t offset_after_header = start_offset - sizeof(ImageHeader); in CopyAndFixupObjects()
3047 Object* dst = reinterpret_cast<Object*>(image_info.image_.Begin() + start_offset); in CopyAndFixupObjects()
/art/compiler/optimizing/
Dloop_optimization.cc2197 uint32_t start_offset = in ComputeAlignment() local
2199 return Alignment(BaseAlignment(), start_offset & (BaseAlignment() - 1u)); in ComputeAlignment()