Home | History | Annotate | Download | only in Support

Lines Matching defs:Elf32_Word

34 typedef uint32_t Elf32_Word;
67 Elf32_Word e_version; // Must be equal to 1
71 Elf32_Word e_flags; // Processor-specific flags
626 Elf32_Word sh_name; // Section name (index into string table)
627 Elf32_Word sh_type; // Section type (SHT_*)
628 Elf32_Word sh_flags; // Section flags (SHF_*)
631 Elf32_Word sh_size; // Size of section, in bytes
632 Elf32_Word sh_link; // Section type-specific header table index link
633 Elf32_Word sh_info; // Section type-specific extra information
634 Elf32_Word sh_addralign; // Section address alignment
635 Elf32_Word sh_entsize; // Size of records contained within the section
828 Elf32_Word st_name; // Symbol name (index into string table)
830 Elf32_Word st_size; // Size of the symbol
926 Elf32_Word r_info; // Symbol table index and type of relocation to apply
930 Elf32_Word getSymbol() const { return (r_info >> 8); }
932 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); }
934 void setSymbolAndType(Elf32_Word s, unsigned char t) {
942 Elf32_Word r_info; // Symbol table index and type of relocation to apply
947 Elf32_Word getSymbol() const { return (r_info >> 8); }
949 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); }
951 void setSymbolAndType(Elf32_Word s, unsigned char t) {
991 Elf32_Word p_type; // Type of segment
995 Elf32_Word p_filesz; // Num. of bytes in file image of segment (may be zero)
996 Elf32_Word p_memsz; // Num. of bytes in mem image of segment (may be zero)
997 Elf32_Word p_flags; // Segment flags
998 Elf32_Word p_align; // Segment alignment constraint
1076 Elf32_Word d_val; // Integer value of entry.
1349 Elf32_Word ch_type;
1350 Elf32_Word ch_size;
1351 Elf32_Word ch_addralign;