Home
last modified time | relevance | path

Searched defs:Elf32_Sym (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/BinaryFormat/
H A DELF.h1189 struct Elf32_Sym { struct
1190 Elf32_Word st_name; // Symbol name (index into string table)
1191 Elf32_Addr st_value; // Value or address associated with the symbol
1192 Elf32_Word st_size; // Size of the symbol
1193 unsigned char st_info; // Symbol's type and binding attributes
1194 unsigned char st_other; // Must be zero; reserved
1199 unsigned char getBinding() const { return st_info >> 4; } in getBinding()
1200 unsigned char getType() const { return st_info & 0x0f; } in getType()
1201 void setBinding(unsigned char b) { setBindingAndType(b, getType()); } in setBinding()
1202 void setType(unsigned char t) { setBindingAndType(getBinding(), t); } in setType()
[all …]
/openbsd/sys/sys/
H A Dexec_elf.h333 } Elf32_Sym; typedef