Searched refs:current_offset (Results 1 – 6 of 6) sorted by relevance
55 uint32_t current_offset = minimum_offset_; in GetOffset() local57 current_offset += DecodeUnsignedLeb128(&block); in GetOffset()60 return current_offset; in GetOffset()
2002 const size_t current_offset = offset; in CheckIntraSection() local2093 if (offset == current_offset) { in CheckIntraSection()
2353 off_t current_offset = out->Seek(0, kSeekCurrent); in WriteRodata() local2354 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() local2488 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() local2551 current_offset = current_offset + quicken_info_offset; in WriteQuickeningInfo()2552 uint32_t before_offset = current_offset; in WriteQuickeningInfo()[all …]
1209 size_t current_offset = image_info.GetBinSlotSize(bin); in AssignImageBinSlot() local1213 BinSlot new_bin_slot(bin, current_offset); in AssignImageBinSlot()
623 uint32_t current_offset = start_offset; in AddAnnotationsFromMapListSection() local626 const dex::AnnotationItem* annotation = dex_file.GetAnnotationItemAtOffset(current_offset); in AddAnnotationsFromMapListSection()629 current_offset += annotation_item->GetSize(); in AddAnnotationsFromMapListSection()
347 uint32_t current_offset = gap_start; in AddFieldGap() local348 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 …]