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()
2316 const size_t current_offset = offset; in CheckIntraSection() local2409 if (offset == current_offset) { in CheckIntraSection()
2364 off_t current_offset = out->Seek(0, kSeekCurrent); in WriteRodata() local2365 if (current_offset == static_cast<off_t>(-1)) { in WriteRodata()2368 DCHECK_GE(static_cast<size_t>(current_offset), file_offset + oat_header_->GetHeaderSize()); in WriteRodata()2369 size_t relative_offset = current_offset - file_offset; in WriteRodata()2498 const uint32_t current_offset = start_offset_ + written_bytes_; in VisitDexMethods() local2499 CHECK_ALIGNED_PARAM(current_offset, CompactOffsetTable::kAlignment); in VisitDexMethods()2507 out_table_offsets_->push_back(current_offset); in VisitDexMethods()2552 size_t current_offset = start_offset; in WriteQuickeningInfo() local2562 current_offset = current_offset + quicken_info_offset; in WriteQuickeningInfo()2563 uint32_t before_offset = current_offset; in WriteQuickeningInfo()[all …]
874 size_t current_offset = image_info.GetBinSlotSize(bin); in AssignImageBinSlot() local878 BinSlot new_bin_slot(bin, current_offset); in AssignImageBinSlot()
624 uint32_t current_offset = start_offset; in AddAnnotationsFromMapListSection() local627 const dex::AnnotationItem* annotation = dex_file.GetAnnotationItemAtOffset(current_offset); in AddAnnotationsFromMapListSection()630 current_offset += annotation_item->GetSize(); in AddAnnotationsFromMapListSection()
564 uint32_t current_offset = gap_start; in AddFieldGap() local565 while (current_offset != gap_end) { in AddFieldGap()566 size_t remaining = gap_end - current_offset; in AddFieldGap()567 if (remaining >= sizeof(uint32_t) && IsAligned<4>(current_offset)) { in AddFieldGap()568 gaps->push(FieldGap {current_offset, sizeof(uint32_t)}); in AddFieldGap()569 current_offset += sizeof(uint32_t); in AddFieldGap()570 } else if (remaining >= sizeof(uint16_t) && IsAligned<2>(current_offset)) { in AddFieldGap()571 gaps->push(FieldGap {current_offset, sizeof(uint16_t)}); in AddFieldGap()572 current_offset += sizeof(uint16_t); in AddFieldGap()574 gaps->push(FieldGap {current_offset, sizeof(uint8_t)}); in AddFieldGap()[all …]