Home
last modified time | relevance | path

Searched refs:e_shoff (Results 1 – 25 of 2285) sorted by relevance

12345678910>>...92

/dports/devel/bsdelf/elftoolchain-0.7.1/test/elfdump/ts/archive2/
H A D@e%libdwarf.a.out12 e_shoff: 4104
31 e_shoff: 5864
50 e_shoff: 320
69 e_shoff: 1136
88 e_shoff: 240
107 e_shoff: 232
126 e_shoff: 2368
145 e_shoff: 680
164 e_shoff: 552
221 e_shoff: 528
[all …]
H A D@S@e%libdwarf.a.out11 e_shoff: 0x1008 e_shentsize: 64 e_shnum: 14
23 e_shoff: 0x16e8 e_shentsize: 64 e_shnum: 15
35 e_shoff: 0x140 e_shentsize: 64 e_shnum: 12
47 e_shoff: 0x470 e_shentsize: 64 e_shnum: 12
59 e_shoff: 0xf0 e_shentsize: 64 e_shnum: 10
71 e_shoff: 0xe8 e_shentsize: 64 e_shnum: 10
83 e_shoff: 0x940 e_shentsize: 64 e_shnum: 13
95 e_shoff: 0x2a8 e_shentsize: 64 e_shnum: 12
107 e_shoff: 0x228 e_shentsize: 64 e_shnum: 12
119 e_shoff: 0x2490 e_shentsize: 64 e_shnum: 15
[all …]
/dports/devel/elftoolchain/elftoolchain-0.7.1/test/elfdump/ts/archive2/
H A D@e%libdwarf.a.out12 e_shoff: 4104
31 e_shoff: 5864
50 e_shoff: 320
69 e_shoff: 1136
88 e_shoff: 240
107 e_shoff: 232
126 e_shoff: 2368
145 e_shoff: 680
164 e_shoff: 552
221 e_shoff: 528
[all …]
H A D@S@e%libdwarf.a.out11 e_shoff: 0x1008 e_shentsize: 64 e_shnum: 14
23 e_shoff: 0x16e8 e_shentsize: 64 e_shnum: 15
35 e_shoff: 0x140 e_shentsize: 64 e_shnum: 12
47 e_shoff: 0x470 e_shentsize: 64 e_shnum: 12
59 e_shoff: 0xf0 e_shentsize: 64 e_shnum: 10
71 e_shoff: 0xe8 e_shentsize: 64 e_shnum: 10
83 e_shoff: 0x940 e_shentsize: 64 e_shnum: 13
95 e_shoff: 0x2a8 e_shentsize: 64 e_shnum: 12
107 e_shoff: 0x228 e_shentsize: 64 e_shnum: 12
119 e_shoff: 0x2490 e_shentsize: 64 e_shnum: 15
[all …]
/dports/devel/elfutils/elfutils-0.179/libelf/
H A Delf_begin.c110 ehdr_mem.e32.e_shoff = ((Elf32_Ehdr *) e_ident)->e_shoff; in get_shnum()
118 CONVERT (ehdr_mem.e32.e_shoff); in get_shnum()
126 ehdr_mem.e64.e_shoff = ((Elf64_Ehdr *) e_ident)->e_shoff; in get_shnum()
134 CONVERT (ehdr_mem.e64.e_shoff); in get_shnum()
167 + ehdr.e32->e_shoff in get_shnum()
173 offset + ehdr.e32->e_shoff in get_shnum()
193 if (ehdr.e32->e_shoff > maxsize in get_shnum()
224 + ehdr.e64->e_shoff in get_shnum()
230 offset + ehdr.e64->e_shoff in get_shnum()
372 Elf32_Off e_shoff = elf->state.elf32.ehdr->e_shoff; in file_read_elf() local
[all …]
/dports/devel/elfsh/elfsh-0.51b3/libelfsh/
H A Dsave.c33 file->hdr->e_shoff = 0; in elfsh_save_obj()
39 else if (!file->hdr->e_shoff) in elfsh_save_obj()
42 file->hdr->e_shoff = actual->shdr->sh_offset + actual->shdr->sh_size; in elfsh_save_obj()
64 actual->shdr->sh_offset > file->hdr->e_shoff) in elfsh_save_obj()
69 file->hdr->e_shoff, in elfsh_save_obj()
73 XSEEK(fd, file->hdr->e_shoff, SEEK_SET, -1); in elfsh_save_obj()
121 file->hdr->e_shoff, file->hdr->e_shentsize * file->hdr->e_shnum); in elfsh_save_obj()
124 XSEEK(fd, file->hdr->e_shoff, SEEK_SET, -1); in elfsh_save_obj()
/dports/sysutils/testdisk/testdisk-7.1/src/
H A Dfile_elf.c85 Elf32_Off e_shoff; member
102 Elf64_Off e_shoff; member
132 … uint32_t tmp=(hdr32->e_ident[EI_DATA]==ELFDATA2LSB ? le32(hdr32->e_shoff) : be32(hdr32->e_shoff)); in header_check_elf()
140 … uint64_t tmp=(hdr64->e_ident[EI_DATA]==ELFDATA2LSB ? le64(hdr64->e_shoff) : be64(hdr64->e_shoff)); in header_check_elf()
/dports/security/razorback-yaraNugget/yaraNugget-0.5.0/libyara/
H A Dexe.c134 if (elf_header->e_shoff == 0 || elf_header->e_shnum == 0) in elf_rva_to_offset_32()
138 if(ULLONG_MAX - elf_header->e_shoff < sizeof(Elf64_Shdr) * elf_header->e_shnum) in elf_rva_to_offset_32()
141 if (elf_header->e_shoff + sizeof(Elf32_Shdr) * elf_header->e_shnum > buffer_length) in elf_rva_to_offset_32()
144 section = (Elf32_Shdr*) ((unsigned char*) elf_header + elf_header->e_shoff); in elf_rva_to_offset_32()
173 if (elf_header->e_shoff == 0 || elf_header->e_shnum == 0) in elf_rva_to_offset_64()
176 if (elf_header->e_shoff + sizeof(Elf64_Shdr) * elf_header->e_shnum > buffer_length) in elf_rva_to_offset_64()
179 section = (Elf64_Shdr*) ((unsigned char*) elf_header + elf_header->e_shoff); in elf_rva_to_offset_64()
/dports/devel/bsdelf/elftoolchain-0.7.1/test/elfdump/ts/archive1/
H A D@e%liba.a.out12 e_shoff: 192
31 e_shoff: 220
50 e_shoff: 212
69 e_shoff: 244
H A D@e@i%liba.a.out12 e_shoff: 192
31 e_shoff: 220
50 e_shoff: 212
69 e_shoff: 244
/dports/devel/elftoolchain/elftoolchain-0.7.1/test/elfdump/ts/archive1/
H A D@e@i%liba.a.out12 e_shoff: 192
31 e_shoff: 220
50 e_shoff: 212
69 e_shoff: 244
H A D@e%liba.a.out12 e_shoff: 192
31 e_shoff: 220
50 e_shoff: 212
69 e_shoff: 244
/dports/devel/llvm90/llvm-9.0.1.src/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x40
18 ## Set the e_shoff field to a value much larger than the object file size.
32 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/llvm11/llvm-11.0.1.src/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/llvm10/llvm-10.0.1.src/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…
/dports/graphics/llvm-mesa/llvm-13.0.1.src/test/tools/llvm-objcopy/ELF/
H A Dinvalid-e_shoff.test1 ## If the e_shoff field is set to a value either past the end of the file, or
2 ## such that e_shoff + e_shnum * sizeof(Elf_Shdr) is past the end of the file,
16 # CASE1: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x80
18 ## Set the e_shoff field to a value much larger than the object file size.
33 # CASE2: error: '[[INPUT]]': section header table goes past the end of the file: e_shoff = 0x400000…

12345678910>>...92