/external/llvm/test/Object/ |
D | no-section-header-string-table.test | 7 CHECK: Type: SHT_RELA (0x4)
|
D | obj2yaml.test | 316 ELF-MIPS64EL-NEXT: Type: SHT_RELA 378 ELF-X86-64-NEXT: Type: SHT_RELA
|
/external/llvm/test/MC/PowerPC/ |
D | ppc64-initial-cfa.s | 42 # STATIC-NEXT: Type: SHT_RELA 83 # PIC-NEXT: Type: SHT_RELA
|
/external/elfutils/libebl/ |
D | eblsectionstripp.c | 49 if (shdr->sh_type == SHT_RELA || shdr->sh_type == SHT_REL) in ebl_section_strip_p()
|
/external/elfutils/libelf/ |
D | elf-knowledge.h | 61 ((Shdr)->sh_type == SHT_REL || (Shdr)->sh_type == SHT_RELA \
|
D | elf32_updatenull.c | 229 case SHT_RELA: in __elfw2()
|
D | elf_getdata.c | 58 [SHT_RELA] = ELF_T_RELA,
|
/external/elfutils/libdwfl/ |
D | derelocate.c | 137 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in cache_sections() 200 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA)) in cache_sections()
|
D | relocate.c | 727 if ((shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in __libdwfl_relocate()
|
/external/llvm/include/llvm/Object/ |
D | ELFObjectFile.h | 611 if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL) in section_rel_begin() 633 if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL) in section_rel_end() 648 if (Type != ELF::SHT_REL && Type != ELF::SHT_RELA) in getRelocatedSection() 719 if (getRelSection(Rel)->sh_type != ELF::SHT_RELA) in getRelocationAddend() 734 assert(getRelSection(Rela)->sh_type == ELF::SHT_RELA); in getRela()
|
/external/elfutils/src/ |
D | findtextrel.c | 415 if ((shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in process_file() 452 else if (shdr->sh_type == SHT_RELA) in process_file()
|
D | unstrip.c | 452 case SHT_RELA: in adjust_relocs() 911 if (sh_type == SHT_REL || sh_type == SHT_RELA) in sections_flags_match() 1180 || (sec->shdr.sh_type == SHT_RELA in find_alloc_sections_prelink() 1562 if ((sec->shdr.sh_type == SHT_REL || sec->shdr.sh_type == SHT_RELA) in copy_elided_sections() 1903 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA)) in copy_elided_sections()
|
D | ld.c | 422 if (h->type == SHT_REL || h->type == SHT_RELA) in main() 1236 if (h->type == SHT_REL || h->type == SHT_RELA) in collect_sections()
|
D | strip.c | 781 || shdr_info[cnt].shdr.sh_type == SHT_RELA) in handle_elf() 1483 case SHT_RELA: in handle_elf() 1763 if (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in handle_elf()
|
D | objdump.c | 498 if (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in show_relocs()
|
D | elfcmp.c | 762 if ((shdr->sh_type != SHT_REL && shdr->sh_type != SHT_RELA) in search_for_copy_reloc()
|
/external/kernel-headers/original/uapi/linux/ |
D | elf.h | 270 #define SHT_RELA 4 macro
|
/external/llvm/tools/obj2yaml/ |
D | elf2yaml.cpp | 92 case ELF::SHT_RELA: { in dump() 300 assert(Shdr->sh_type == ELF::SHT_RELA && "Section type is not SHT_RELA"); in dumpRelaSection()
|
/external/llvm/tools/yaml2obj/ |
D | yaml2elf.cpp | 368 Section.Type == llvm::ELF::SHT_RELA) && in writeSectionContent() 371 bool IsRela = Section.Type == llvm::ELF::SHT_RELA; in writeSectionContent()
|
/external/llvm/lib/Object/ |
D | ELFYAML.cpp | 356 ECase(SHT_RELA) in enumeration() 713 case ELF::SHT_RELA: in mapping()
|
/external/valgrind/VEX/unused/ |
D | linker.c | 745 if (shdr[shnum].sh_type == SHT_RELA) { in ocResolve_ELF() 853 } else if (shdr[i].sh_type == SHT_RELA) { in ocVerifyImage_ELF()
|
/external/valgrind/VEX/switchback/ |
D | linker.c | 905 if (shdr[shnum].sh_type == SHT_RELA) { 1016 } else if (shdr[i].sh_type == SHT_RELA) {
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 766 LLVM_READOBJ_ENUM_CASE(ELF, SHT_RELA ); in getElfSectionType() 1145 if (Sec.sh_type != ELF::SHT_REL && Sec.sh_type != ELF::SHT_RELA) in printRelocations() 1205 case ELF::SHT_RELA: in printRelocations() 1913 case ELF::SHT_RELA: in parsePLT()
|
/external/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 966 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL, in createRelocationSection() 1116 case ELF::SHT_RELA: { in writeSection()
|
/external/llvm/include/llvm/Support/ |
D | ELF.h | 647 SHT_RELA = 4, // Relocation entries; explicit addends. enumerator
|