/art/dexlayout/ |
D | dex_ir_builder.cc | 94 CHECK_EQ(item->offset_, 0u); in CheckAndSetRemainingOffsets() 98 CHECK_EQ(item->offset_, collections->StringIdsOffset()); in CheckAndSetRemainingOffsets() 102 CHECK_EQ(item->offset_, collections->TypeIdsOffset()); in CheckAndSetRemainingOffsets() 106 CHECK_EQ(item->offset_, collections->ProtoIdsOffset()); in CheckAndSetRemainingOffsets() 110 CHECK_EQ(item->offset_, collections->FieldIdsOffset()); in CheckAndSetRemainingOffsets() 114 CHECK_EQ(item->offset_, collections->MethodIdsOffset()); in CheckAndSetRemainingOffsets() 118 CHECK_EQ(item->offset_, collections->ClassDefsOffset()); in CheckAndSetRemainingOffsets() 122 CHECK_EQ(item->offset_, collections->CallSiteIdsOffset()); in CheckAndSetRemainingOffsets() 126 CHECK_EQ(item->offset_, collections->MethodHandleItemsOffset()); in CheckAndSetRemainingOffsets() 130 CHECK_EQ(item->offset_, disk_header.map_off_); in CheckAndSetRemainingOffsets() [all …]
|
D | dex_writer.cc | 517 : type_(type), size_(size), offset_(offset) { } in MapItemContainer() 520 return offset_ > other.offset_; in operator <() 525 uint32_t offset_; member 620 uint32_buffer[1] = map_item.offset_; in WriteMapItem()
|
D | dex_ir.h | 113 uint32_t GetOffset() const { return offset_; } in GetOffset() 114 void SetOffset(uint32_t new_offset) { offset_ = new_offset; } in SetOffset() 117 uint32_t offset_ = 0; 362 uint32_t GetOffset() const { return offset_; } in GetOffset() 364 void SetOffset(uint32_t offset) { offset_ = offset; } in SetOffset() 368 Item(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in Item() 370 uint32_t offset_ = 0; variable
|
D | dex_ir.cc | 760 SetCallSiteIdsOffset(item->offset_); in CreateCallSitesAndMethodHandles() 763 SetMethodHandleItemsOffset(item->offset_); in CreateCallSitesAndMethodHandles()
|
/art/compiler/linker/ |
D | vector_output_stream.h | 35 if (static_cast<size_t>(offset_) == vector_->size()) { in WriteFully() 38 offset_ += byte_count; in WriteFully() 40 off_t new_offset = offset_ + byte_count; in WriteFully() 42 memcpy(&(*vector_)[offset_], buffer, byte_count); in WriteFully() 43 offset_ = new_offset; in WriteFully() 61 off_t offset_; variable
|
D | vector_output_stream.cc | 24 : OutputStream(location), offset_(vector->size()), vector_(vector) {} in VectorOutputStream() 35 new_offset = offset_ + offset; in Seek() 44 offset_ = new_offset; in Seek() 45 return offset_; in Seek()
|
/art/runtime/ |
D | dex_file_layout.cc | 29 DCHECK_LE(offset_ + size_, dex_file->Size()); in Madvise() 30 MadviseLargestPageAlignedRegion(dex_file->Begin() + offset_, in Madvise() 31 dex_file->Begin() + offset_ + size_, in Madvise() 71 << part.offset_ << "-" << part.offset_ + part.size_ << ") "; in operator <<()
|
D | image.h | 54 ImageSection() : offset_(0), size_(0) { } in ImageSection() 55 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in ImageSection() 60 return offset_; in Offset() 72 return offset - offset_ < size_; in Contains() 76 uint32_t offset_;
|
D | dex_file_tracking_registrar.cc | 257 …nst void* string_data_begin = reinterpret_cast<const void*>(dex_file_->Begin() + map_item.offset_); in SetAllStringDataRegistration() 258 size_t string_data_size = next_map_item.offset_ - map_item.offset_; in SetAllStringDataRegistration()
|
D | dex_file_layout.h | 65 uint32_t offset_ = 0u;
|
D | art_field.h | 92 return MemberOffset(offset_); in GetOffset() 96 return MemberOffset(OFFSETOF_MEMBER(ArtField, offset_)); in OffsetOffset() 253 uint32_t offset_ = 0; variable
|
D | art_field.cc | 43 offset_ = num_bytes.Uint32Value(); in SetOffset()
|
D | dex_file_verifier.cc | 460 if (UNLIKELY(last_offset >= item->offset_ && i != 0)) { in CheckMap() 461 ErrorStringPrintf("Out of order map item: %x then %x", last_offset, item->offset_); in CheckMap() 464 if (UNLIKELY(item->offset_ >= header_->file_size_)) { in CheckMap() 466 item->offset_, header_->file_size_); in CheckMap() 494 last_offset = item->offset_; in CheckMap() 1857 uint32_t section_offset = item->offset_; in CheckIntraSection() 2788 uint32_t section_offset = item->offset_; in CheckInterSection()
|
D | art_field-inl.h | 52 return MemberOffset(offset_); in GetOffsetDuringLinking()
|
/art/runtime/mirror/ |
D | string-inl.h | 65 : count_(count), src_array_(src_array), offset_(offset), high_byte_(high_byte) { in SetStringCountAndBytesVisitor() 75 const uint8_t* const src = reinterpret_cast<uint8_t*>(src_array_->GetData()) + offset_; in operator() 92 const int32_t offset_; variable 101 count_(count), src_array_(src_array), offset_(offset) { in SetStringCountAndValueVisitorFromCharArray() 109 const uint16_t* const src = src_array_->GetData() + offset_; in operator() 123 const int32_t offset_; variable 132 count_(count), src_string_(src_string), offset_(offset) { in SetStringCountAndValueVisitorFromString() 143 const uint8_t* const src = src_string_->GetValueCompressed() + offset_; in operator() 146 const uint16_t* const src = src_string_->GetValue() + offset_; in operator() 160 const int32_t offset_; variable
|
D | field.h | 82 return GetField32(OFFSET_OF_OBJECT_MEMBER(Field, offset_)); in GetOffset() 109 int32_t offset_; variable 129 SetField32<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, offset_), offset); in SetOffset()
|
/art/compiler/ |
D | oat_writer.cc | 173 offset_(offset) { in OatClassHeader() 201 uint32_t offset_; member in art::OatWriter::OatClassHeader 284 size_t offset_; member in art::OatWriter::OatDexFile 311 DCHECK_EQ(static_cast<off_t>(file_offset + offset_), out->Seek(0, kSeekCurrent)) \ 312 << "file_offset=" << file_offset << " offset_=" << offset_ 666 offset_(offset), in DexMethodVisitor() 689 return offset_; in GetOffset() 698 size_t offset_; member in art::OatWriter::DexMethodVisitor 842 writer_->oat_class_headers_.emplace_back(offset_, in EndClass() 847 offset_ += header.SizeOf(); in EndClass() [all …]
|
/art/runtime/gc/accounting/ |
D | card_table.cc | 95 : mem_map_(mem_map), biased_begin_(biased_begin), offset_(offset) { in CardTable() 122 uint8_t* begin = mem_map_->Begin() + offset_; in CheckAddrIsInCardTable()
|
D | card_table-inl.h | 214 << " begin: " << reinterpret_cast<void*>(mem_map_->Begin() + offset_) in AddrFromCard() 229 uint8_t* begin = mem_map_->Begin() + offset_; in IsValidCard() 237 << " begin: " << reinterpret_cast<void*>(mem_map_->Begin() + offset_) in CheckCardValid()
|
D | card_table.h | 152 const size_t offset_; variable
|
/art/compiler/optimizing/ |
D | nodes_vector.h | 32 Alignment(size_t base, size_t offset) : base_(base), offset_(offset) { in Alignment() 42 return ((offset_ | base_) & (base - 1u)) == 0; in IsAlignedAt() 46 return "ALIGN(" + std::to_string(base_) + "," + std::to_string(offset_) + ")"; in ToString() 50 return base_ == other.base_ && offset_ == other.offset_; 55 size_t offset_; variable
|
D | load_store_analysis.h | 114 offset_(offset), in HeapLocation() 129 size_t GetOffset() const { return offset_; } in GetOffset() 152 const size_t offset_; // offset of static/instance field. variable
|
D | code_generator_arm64.cc | 814 offset_(offset), in LoadReferenceWithBakerReadBarrierSlowPathARM64() 903 offset_, in EmitNativeCode() 927 uint32_t offset_; member in art::arm64::LoadReferenceWithBakerReadBarrierSlowPathARM64 974 offset_(offset), in LoadReferenceWithBakerReadBarrierAndUpdateFieldSlowPathARM64() 1003 DCHECK_EQ(offset_, 0u); in EmitNativeCode() 1055 offset_, in EmitNativeCode() 1153 uint32_t offset_; member in art::arm64::LoadReferenceWithBakerReadBarrierAndUpdateFieldSlowPathARM64 1181 offset_(offset), in ReadBarrierForHeapReferenceSlowPathARM64() 1272 __ Add(index_reg, index_reg, Operand(offset_)); in EmitNativeCode() 1283 DCHECK_EQ(offset_, 0u); in EmitNativeCode() [all …]
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1344 EXPECT_LT(code_item_offset - section_hot_code.offset_, section_hot_code.size_); in TEST_F() 1348 EXPECT_LT(code_item_offset - section_sometimes_used.offset_, section_sometimes_used.size_); in TEST_F() 1352 EXPECT_LT(code_item_offset - section_startup_only.offset_, section_startup_only.size_); in TEST_F() 1356 EXPECT_LT(code_item_offset - section_unused.offset_, section_unused.size_); in TEST_F()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 409 offset_(offset) {} in MarkObjectSlowPath() 431 ArtField* field = holder_->FindFieldByOffset(offset_); in operator ()() 439 << " offset=" << offset_.Uint32Value() in operator ()() 469 MemberOffset offset_; member in art::gc::collector::MarkSweep::MarkObjectSlowPath
|