Home
last modified time | relevance | path

Searched refs:Elf32_Half (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/sys/
H A Delf32.h39 typedef uint16_t Elf32_Half; typedef
57 Elf32_Half e_type; /* File type. */
58 Elf32_Half e_machine; /* Machine architecture. */
64 Elf32_Half e_ehsize; /* Size of ELF header in bytes. */
65 Elf32_Half e_phentsize; /* Size of program header entry. */
66 Elf32_Half e_phnum; /* Number of program header entries. */
67 Elf32_Half e_shentsize; /* Size of section header entry. */
68 Elf32_Half e_shnum; /* Number of section header entries. */
69 Elf32_Half e_shstrndx; /* Section name strings section. */
167 Elf32_Half m_repeat; /* repeat count */
[all …]
/freebsd/contrib/file/src/
H A Dreadelf.h43 typedef uint16_t Elf32_Half; typedef
94 Elf32_Half e_type;
95 Elf32_Half e_machine;
101 Elf32_Half e_ehsize;
102 Elf32_Half e_phentsize;
103 Elf32_Half e_phnum;
104 Elf32_Half e_shentsize;
105 Elf32_Half e_shnum;
106 Elf32_Half e_shstrndx;
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DELF.h32 using Elf32_Half = uint16_t; variable
64 Elf32_Half e_type; // Type of file (see ET_* below)
65 Elf32_Half e_machine; // Required architecture for this file (see EM_*)
71 Elf32_Half e_ehsize; // Size of ELF header, in bytes
72 Elf32_Half e_phentsize; // Size of an entry in the program header table
73 Elf32_Half e_phnum; // Number of entries in the program header table
74 Elf32_Half e_shentsize; // Size of an entry in the section header table
75 Elf32_Half e_shnum; // Number of entries in the section header table
76 Elf32_Half e_shstrndx; // Sect hdr table index of sect name string table
1277 Elf32_Half st_shndx; // Which section (header table index) it's defined in
/freebsd/contrib/elftoolchain/common/
H A Delfdefinitions.h2318 typedef uint16_t Elf32_Half; /* Unsigned medium integer. */ typedef
2403 Elf32_Half e_type; /* Object file type (ET_*). */
2404 Elf32_Half e_machine; /* Machine type (EM_*). */
2410 Elf32_Half e_ehsize; /* Elf header size in bytes. */
2411 Elf32_Half e_phentsize; /* PHDR table entry size in bytes. */
2412 Elf32_Half e_phnum; /* Number of PHDR entries. */
2413 Elf32_Half e_shentsize; /* SHDR table entry size in bytes. */
2414 Elf32_Half e_shnum; /* Number of SHDR entries. */
2415 Elf32_Half e_shstrndx; /* Index of section name string table. */
2728 Elf32_Half m_repeat; /* Repeat count. */
[all …]
/freebsd/contrib/elftoolchain/readelf/
H A Dreadelf.c4185 re->vs_sz = d->d_size / sizeof(Elf32_Half); in search_ver()