Lines Matching refs:Begin
209 program_headers_start_ = Begin() + GetHeader().e_phoff; in Setup()
289 Begin() + section_header->sh_offset) { in Setup()
293 << " != " << reinterpret_cast<void*>(Begin() + section_header->sh_offset); in Setup()
329 if (Begin() + offset >= End()) { in CheckAndSet()
334 *target = Begin() + offset; in CheckAndSet()
351 if (Begin() + section_header->sh_offset == source) { in CheckSectionsLinked()
357 } else if (Begin() + section_header->sh_offset == target) { in CheckSectionsLinked()
460 CHECK(map_->Begin() != nullptr) << file_->GetPath(); in SetMap()
462 header_ = reinterpret_cast<Elf32_Ehdr*>(map_->Begin()); in SetMap()
948 byte* strings = Begin() + string_section.sh_offset; in GetString()
986 return reinterpret_cast<Elf32_Rel*>(Begin() + section_header.sh_offset); in GetRelSectionStart()
1003 return reinterpret_cast<Elf32_Rela*>(Begin() + section_header.sh_offset); in GetRelaSectionStart()
1136 base_address_ = reinterpret_cast<uint8_t*>(reinterpret_cast<uintptr_t>(reserve->Begin()) in Load()
1186 if (segment->Begin() != p_vaddr) { in Load()
1189 i, file_->GetPath().c_str(), p_vaddr, segment->Begin()); in Load()
1197 if ((dsptr < Begin() || dsptr >= End()) && !ValidPointer(dsptr)) { in Load()
1263 if (segment->Begin() <= start && start < segment->End()) { in ValidPointer()
1631 all.Begin() + debug_abbrev->sh_offset, debug_abbrev->sh_size, text_sec->sh_addr, in GdbJITSupport()
1632 all.Begin() + debug_info->sh_offset, debug_info->sh_size, in GdbJITSupport()
1633 all.Begin() + eh_frame->sh_offset, eh_frame->sh_size)) { in GdbJITSupport()
1638 jit_gdb_entry_ = CreateCodeEntry(all.Begin(), all.Size()); in GdbJITSupport()