/third_party/elfio/examples/write_obj/ |
D | write_obj.cpp | 101 rel_sec->set_type( SHT_REL ); in main() 104 rel_sec->set_entry_size( writer.get_default_entry_size( SHT_REL ) ); in main()
|
/third_party/elfio/elfio/ |
D | elfio_relocation.hpp | 98 if ( SHT_REL == relocation_section->get_type() ) { in get_entry() 108 if ( SHT_REL == relocation_section->get_type() ) { in get_entry() 200 if ( SHT_REL == relocation_section->get_type() ) { in set_entry() 210 if ( SHT_REL == relocation_section->get_type() ) { in set_entry()
|
/third_party/elfutils/libebl/ |
D | eblsectionstripp.c | 49 if (shdr->sh_type == SHT_RELA || shdr->sh_type == SHT_REL) in ebl_section_strip_p()
|
/third_party/elfutils/libelf/ |
D | elf-knowledge.h | 61 ((Shdr)->sh_type == SHT_REL || (Shdr)->sh_type == SHT_RELA \
|
D | elf32_updatenull.c | 247 case SHT_REL: in __elfw2()
|
D | elf_getdata.c | 58 [SHT_REL] = ELF_T_REL,
|
/third_party/elfutils/libdwfl/ |
D | relocate.c | 626 = gelf_fsize (relocated, shdr->sh_type == SHT_REL ? ELF_T_REL : ELF_T_RELA, in relocate_section() 630 if (shdr->sh_type == SHT_REL) in relocate_section() 708 if (shdr->sh_type == SHT_REL) in relocate_section() 778 if ((shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in __libdwfl_relocate()
|
D | derelocate.c | 147 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in cache_sections() 210 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA)) in cache_sections()
|
/third_party/elfio/tests/ |
D | ELFIOTest1.cpp | 102 rel_sec->set_type( SHT_REL ); in write_obj_i386() 106 rel_sec->set_entry_size( writer.get_default_entry_size( SHT_REL ) ); in write_obj_i386() 798 rel_sec->set_type( SHT_REL ); in TEST() 801 rel_sec->set_entry_size( writer.get_default_entry_size( SHT_REL ) ); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELFObjectFile.h | 832 if (S->sh_type != ELF::SHT_RELA && S->sh_type != ELF::SHT_REL) in section_rel_end() 854 if (Type != ELF::SHT_REL && Type != ELF::SHT_RELA) in getRelocatedSection() 874 if (sec->sh_type == ELF::SHT_REL) in getRelocationSymbol() 891 if (sec->sh_type == ELF::SHT_REL) in getRelocationOffset() 900 if (sec->sh_type == ELF::SHT_REL) in getRelocationType() 929 assert(getRelSection(Rel)->sh_type == ELF::SHT_REL); in getRel()
|
/third_party/elfutils/src/ |
D | findtextrel.c | 390 if ((shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in process_file() 404 if (shdr->sh_type == SHT_REL) in process_file()
|
D | objdump.c | 485 if (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA) in show_relocs() 533 if (shdr->sh_type == SHT_REL) in show_relocs()
|
D | elfcmp.c | 763 if ((shdr->sh_type != SHT_REL && shdr->sh_type != SHT_RELA) in search_for_copy_reloc() 773 if (shdr->sh_type == SHT_REL && shdr->sh_entsize != 0) in search_for_copy_reloc()
|
D | unstrip.c | 456 case SHT_REL: in adjust_relocs() 969 if (sh_type == SHT_REL || sh_type == SHT_RELA) in sections_flags_match() 1285 && undo_sec->shdr.sh_type == SHT_REL in find_alloc_sections_prelink() 1681 if ((sec->shdr.sh_type == SHT_REL || sec->shdr.sh_type == SHT_RELA) in copy_elided_sections() 2067 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA)) in copy_elided_sections()
|
D | strip.c | 579 && (shdr->sh_type == SHT_REL || shdr->sh_type == SHT_RELA)) in remove_debug_relocations() 1428 if (shdr_info[cnt].shdr.sh_type == SHT_REL in handle_elf() 2204 case SHT_REL: in handle_elf() 2217 if (info->shdr.sh_type == SHT_REL) in handle_elf()
|
/third_party/libunwind/include/mingw/ |
D | freebsd-elf_common.h | 201 #define SHT_REL 9 /* relocation section - no addends */ macro
|
/third_party/libunwind/include/win/ |
D | freebsd-elf_common.h | 201 #define SHT_REL 9 /* relocation section - no addends */ macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | ELF.cpp | 240 STRINGIFY_ENUM_CASE(ELF, SHT_REL); in getELFSectionTypeName()
|
/third_party/elfio/c_wrapper/ |
D | elf_types_c_wrapper.hpp | 475 #define SHT_REL 9 macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ELF.h | 675 SHT_REL = 9, // Relocation entries; no explicit addends. enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | ELF.h | 825 SHT_REL = 9, // Relocation entries; no explicit addends. enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 802 RelaSectionName, hasRelocationAddend() ? ELF::SHT_RELA : ELF::SHT_REL, in createRelocationSection() 1000 case ELF::SHT_REL: in writeSection()
|
/third_party/mesa3d/src/amd/common/ |
D | ac_rtld.c | 800 if (shdr->sh_type == SHT_REL) { in ac_rtld_upload()
|
/third_party/libbpf/src/ |
D | linker.c | 681 case SHT_REL: in linker_load_obj_file() 746 case SHT_REL: in linker_sanity_check_elf() 1154 return sec->shdr->sh_type == SHT_REL; in is_relo_sec()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.cpp | 113 const Elf64_Word ShType = ELF64 ? SHT_RELA : SHT_REL; in createRelocationSection()
|