Searched defs:Elf32_Rela (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | ELF.h | 902 struct Elf32_Rela { struct 903 Elf32_Addr r_offset; // Location (file byte offset, or program virtual addr) 904 Elf32_Word r_info; // Symbol table index and type of relocation to apply 905 Elf32_Sword r_addend; // Compute value for relocatable field by adding this 909 Elf32_Word getSymbol() const { return (r_info >> 8); } in getSymbol() 910 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); } in getType() 911 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); } in setSymbol() 912 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() 913 void setSymbolAndType(Elf32_Word s, unsigned char t) { in setSymbolAndType()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ELF.h | 937 struct Elf32_Rela { struct 938 Elf32_Addr r_offset; // Location (file byte offset, or program virtual addr) 939 Elf32_Word r_info; // Symbol table index and type of relocation to apply 940 Elf32_Sword r_addend; // Compute value for relocatable field by adding this 944 Elf32_Word getSymbol() const { return (r_info >> 8); } in getSymbol() 945 unsigned char getType() const { return (unsigned char)(r_info & 0x0ff); } in getType() 946 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); } in setSymbol() 947 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() 948 void setSymbolAndType(Elf32_Word s, unsigned char t) { in setSymbolAndType()
|
/external/llvm/include/llvm/Support/ |
D | ELF.h | 935 struct Elf32_Rela { struct 936 Elf32_Addr r_offset; // Location (file byte offset, or program virtual addr) 937 Elf32_Word r_info; // Symbol table index and type of relocation to apply 938 Elf32_Sword r_addend; // Compute value for relocatable field by adding this 942 Elf32_Word getSymbol() const { return (r_info >> 8); } in getSymbol() 943 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); } in getType() 944 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); } in setSymbol() 945 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() 946 void setSymbolAndType(Elf32_Word s, unsigned char t) { in setSymbolAndType()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/ |
D | ELF.h | 1054 struct Elf32_Rela { struct 1055 Elf32_Addr r_offset; // Location (file byte offset, or program virtual addr) 1056 Elf32_Word r_info; // Symbol table index and type of relocation to apply 1057 Elf32_Sword r_addend; // Compute value for relocatable field by adding this 1061 Elf32_Word getSymbol() const { return (r_info >> 8); } in getSymbol() 1062 unsigned char getType() const { return (unsigned char)(r_info & 0x0ff); } in getType() 1063 void setSymbol(Elf32_Word s) { setSymbolAndType(s, getType()); } in setSymbol() 1064 void setType(unsigned char t) { setSymbolAndType(getSymbol(), t); } in setType() 1065 void setSymbolAndType(Elf32_Word s, unsigned char t) { in setSymbolAndType()
|
/external/kernel-headers/original/uapi/linux/ |
D | elf.h | 175 } Elf32_Rela; typedef
|
/external/u-boot/include/ |
D | elf.h | 412 } Elf32_Rela; typedef
|
/external/kmod/port-gnu/ |
D | elf.h | 545 } Elf32_Rela; typedef
|
/external/elfutils/libelf/ |
D | elf.h | 657 } Elf32_Rela; typedef
|