Home
last modified time | relevance | path

Searched refs:current_offset (Results 1 – 6 of 6) sorted by relevance

/art/libdexfile/dex/
Dcompact_offset_table.cc55 uint32_t current_offset = minimum_offset_; in GetOffset() local
57 current_offset += DecodeUnsignedLeb128(&block); in GetOffset()
60 return current_offset; in GetOffset()
Ddex_file_verifier.cc2002 const size_t current_offset = offset; in CheckIntraSection() local
2093 if (offset == current_offset) { in CheckIntraSection()
/art/dex2oat/linker/
Doat_writer.cc2353 off_t current_offset = out->Seek(0, kSeekCurrent); in WriteRodata() local
2354 if (current_offset == static_cast<off_t>(-1)) { in WriteRodata()
2357 DCHECK_GE(static_cast<size_t>(current_offset), file_offset + oat_header_->GetHeaderSize()); in WriteRodata()
2358 size_t relative_offset = current_offset - file_offset; in WriteRodata()
2487 const uint32_t current_offset = start_offset_ + written_bytes_; in VisitDexMethods() local
2488 CHECK_ALIGNED_PARAM(current_offset, CompactOffsetTable::kAlignment); in VisitDexMethods()
2496 out_table_offsets_->push_back(current_offset); in VisitDexMethods()
2541 size_t current_offset = start_offset; in WriteQuickeningInfo() local
2551 current_offset = current_offset + quicken_info_offset; in WriteQuickeningInfo()
2552 uint32_t before_offset = current_offset; in WriteQuickeningInfo()
[all …]
Dimage_writer.cc1209 size_t current_offset = image_info.GetBinSlotSize(bin); in AssignImageBinSlot() local
1213 BinSlot new_bin_slot(bin, current_offset); in AssignImageBinSlot()
/art/dexlayout/
Ddex_ir_builder.cc623 uint32_t current_offset = start_offset; in AddAnnotationsFromMapListSection() local
626 const dex::AnnotationItem* annotation = dex_file.GetAnnotationItemAtOffset(current_offset); in AddAnnotationsFromMapListSection()
629 current_offset += annotation_item->GetSize(); in AddAnnotationsFromMapListSection()
/art/runtime/
Dclass_linker.cc347 uint32_t current_offset = gap_start; in AddFieldGap() local
348 while (current_offset != gap_end) { in AddFieldGap()
349 size_t remaining = gap_end - current_offset; in AddFieldGap()
350 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) { in AddFieldGap()
351 gaps->push(FieldGap {current_offset, sizeof(uint32_t)}); in AddFieldGap()
352 current_offset += sizeof(uint32_t); in AddFieldGap()
353 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) { in AddFieldGap()
354 gaps->push(FieldGap {current_offset, sizeof(uint16_t)}); in AddFieldGap()
355 current_offset += sizeof(uint16_t); in AddFieldGap()
357 gaps->push(FieldGap {current_offset, sizeof(uint8_t)}); in AddFieldGap()
[all …]