Searched refs:start_offset_ (Results 1 – 6 of 6) sorted by relevance
/art/libdexfile/dex/ |
D | dex_file_layout.h | 73 uint32_t start_offset_ = 0u; 77 return start_offset_ <= offset && offset < end_offset_; in Contains() 81 DCHECK_LE(start_offset_, end_offset_); in Size() 82 return end_offset_ - start_offset_; in Size() 87 if (start_offset_ == end_offset_) { in CombineSection() 88 start_offset_ = start_offset; in CombineSection() 91 start_offset_ = std::min(start_offset_, start_offset); in CombineSection()
|
D | dex_file_layout.cc | 52 DCHECK_LT(start_offset_, dex_file->Size()); in Madvise() 54 MadviseLargestPageAlignedRegion(dex_file->Begin() + start_offset_, in Madvise() 101 << part.start_offset_ << "-" << part.end_offset_ << ") "; in operator <<()
|
/art/dexlayout/ |
D | compact_dex_writer.cc | 115 start_offset_(stream->Tell()) { in ScopedDataSectionItem() 121 const uint32_t deduped_offset = deduper_->Dedupe(start_offset_, in ~ScopedDataSectionItem() 130 stream_->Clear(start_offset_, stream_->Tell() - start_offset_); in ~ScopedDataSectionItem() 132 stream_->Seek(start_offset_); in ~ScopedDataSectionItem() 137 return stream_->Tell() - start_offset_; in Written()
|
D | compact_dex_writer.h | 109 const uint32_t start_offset_; variable
|
/art/compiler/optimizing/ |
D | code_generator.cc | 332 : codegen_(codegen), instruction_(instruction), start_offset_(static_cast<size_t>(-1)) { in DisassemblyScope() 334 start_offset_ = codegen_.GetAssembler().CodeSize(); in DisassemblyScope() 342 instruction_, start_offset_, codegen_.GetAssembler().CodeSize()); in ~DisassemblyScope() 349 size_t start_offset_; member in art::DisassemblyScope
|
/art/dex2oat/linker/ |
D | oat_writer.cc | 2493 start_offset_(start_offset), in WriteQuickeningInfoOffsetsMethodVisitor() 2504 const uint32_t current_offset = start_offset_ + written_bytes_; in VisitDexMethods() 2527 const uint32_t start_offset_; member in art::linker::OatWriter::WriteQuickeningInfoOffsetsMethodVisitor
|