Home
last modified time | relevance | path

Searched refs:start_offset_ (Results 1 – 5 of 5) sorted by relevance

/art/libdexfile/dex/
Ddex_file_layout.h63 uint32_t start_offset_ = 0u;
67 return start_offset_ <= offset && offset < end_offset_; in Contains()
71 DCHECK_LE(start_offset_, end_offset_); in Size()
72 return end_offset_ - start_offset_; in Size()
77 if (start_offset_ == end_offset_) { in CombineSection()
78 start_offset_ = start_offset; in CombineSection()
81 start_offset_ = std::min(start_offset_, start_offset); in CombineSection()
Ddex_file_layout.cc29 << part.start_offset_ << "-" << part.end_offset_ << ") "; in operator <<()
/art/dexlayout/
Dcompact_dex_writer.cc114 start_offset_(stream->Tell()) { in ScopedDataSectionItem()
123 const uint32_t deduped_offset = deduper_->Dedupe(start_offset_, in ~ScopedDataSectionItem()
132 stream_->Clear(start_offset_, stream_->Tell() - start_offset_); in ~ScopedDataSectionItem()
134 stream_->Seek(start_offset_); in ~ScopedDataSectionItem()
139 return stream_->Tell() - start_offset_; in Written()
Dcompact_dex_writer.h106 const uint32_t start_offset_; variable
/art/compiler/optimizing/
Dcode_generator.cc336 : codegen_(codegen), instruction_(instruction), start_offset_(static_cast<size_t>(-1)) { in DisassemblyScope()
338 start_offset_ = codegen_.GetAssembler().CodeSize(); in DisassemblyScope()
346 instruction_, start_offset_, codegen_.GetAssembler().CodeSize()); in ~DisassemblyScope()
353 size_t start_offset_; member in art::DisassemblyScope