Searched defs:r_info (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Delf.h1491 Elf32_Word r_info; // Symbol table index and type of relocation to apply member in struct:Elf32_Rel
1495 Elf32_Word getSymbol() const { return (r_info >> 8); }
1496 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); }
1500 r_info = (s << 8) + t;
1507 Elf32_Word r_info; // Symbol table index and type of relocation to apply member in struct:Elf32_Rela
1512 Elf32_Word getSymbol() const { return (r_info >> 8); }
1513 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); }
1517 r_info = (s << 8) + t;
1524 Elf64_Xword r_info; // Symbol table index and type of relocation to apply. member in struct:Elf64_Rel
1528 Elf64_Word getSymbol() const { return (r_info >> 3
1542 Elf64_Xword r_info; // Symbol table index and type of relocation to apply. member in struct:Elf64_Rela
[all...]

Completed in 960 milliseconds