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

/external/kernel-headers/original/linux/
H A Delf.h132 Elf32_Word r_info; member in struct:elf32_rel
137 Elf64_Xword r_info; /* index and type of relocation */ member in struct:elf64_rel
142 Elf32_Word r_info; member in struct:elf32_rela
148 Elf64_Xword r_info; /* index and type of relocation */ member in struct:elf64_rela
/external/elfutils/src/
H A Delflint.c1053 GELF_R_TYPE (rel->r_info)))
1105 GELF_R_TYPE (rela->r_info)))
1271 GElf_Addr r_offset, GElf_Xword r_info,
1277 if (!ebl_reloc_type_check (ebl, GELF_R_TYPE (r_info)))
1285 && !ebl_reloc_valid_use (ebl, GELF_R_TYPE (r_info)))
1291 && ((GELF_R_SYM (r_info) + 1)
1299 if (ebl_none_reloc_p (ebl, GELF_R_TYPE (r_info)))
1302 if (ebl_gotpc_reloc_check (ebl, GELF_R_TYPE (r_info)))
1307 GElf_Sym *sym = gelf_getsym (symdata, GELF_R_SYM (r_info), &sym_mem);
1315 ebl_reloc_type_name (ebl, GELF_R_SYM (r_info),
1269 check_one_reloc(Ebl *ebl, GElf_Ehdr *ehdr, GElf_Shdr *relshdr, int idx, size_t cnt, const GElf_Shdr *symshdr, Elf_Data *symdata, GElf_Addr r_offset, GElf_Xword r_info, const GElf_Shdr *destshdr, bool reldyn, struct loaded_segment *loaded, enum load_state *statep) argument
[all...]
/external/llvm/include/llvm/Object/
H A DELF.h327 Elf_Word r_info; // Symbol table index and type of relocation to apply member in struct:llvm::object::Elf_Rel_Base
334 Elf_Xword r_info; // Symbol table index and type of relocation to apply member in struct:llvm::object::Elf_Rel_Base
341 Elf_Word r_info; // Symbol table index and type of relocation to apply member in struct:llvm::object::Elf_Rel_Base
349 Elf_Xword r_info; // Symbol table index and type of relocation to apply member in struct:llvm::object::Elf_Rel_Base
359 using Elf_Rel_Base<target_endianness, true, isRela>::r_info;
364 uint64_t getSymbol() const { return (r_info >> 32); }
366 return (unsigned char) (r_info & 0xffffffffL);
371 r_info = (s << 32) + (t&0xffffffffL);
378 using Elf_Rel_Base<target_endianness, false, isRela>::r_info;
383 uint32_t getSymbol() const { return (r_info >>
[all...]
/external/llvm/include/llvm/Support/
H A DELF.h1005 Elf32_Word r_info; // Symbol table index and type of relocation to apply member in struct:llvm::ELF::Elf32_Rel
1009 Elf32_Word getSymbol() const { return (r_info >> 8); }
1010 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); }
1014 r_info = (s << 8) + t;
1021 Elf32_Word r_info; // Symbol table index and type of relocation to apply member in struct:llvm::ELF::Elf32_Rela
1026 Elf32_Word getSymbol() const { return (r_info >> 8); }
1027 unsigned char getType() const { return (unsigned char) (r_info & 0x0ff); }
1031 r_info = (s << 8) + t;
1038 Elf64_Xword r_info; // Symbol table index and type of relocation to apply. member in struct:llvm::ELF::Elf64_Rel
1042 Elf64_Xword getSymbol() const { return (r_info >> 3
1056 Elf64_Xword r_info; // Symbol table index and type of relocation to apply. member in struct:llvm::ELF::Elf64_Rela
[all...]
/external/qemu/
H A Delf.h960 Elf32_Word r_info; member in struct:elf32_rel
965 Elf64_Xword r_info; /* index and type of relocation */ member in struct:elf64_rel
970 Elf32_Word r_info; member in struct:elf32_rela
976 Elf64_Xword r_info; /* index and type of relocation */ member in struct:elf64_rela
/external/elfutils/libelf/
H A Delf.h501 Elf32_Word r_info; /* Relocation type and symbol index */ member in struct:__anon5253
512 Elf64_Xword r_info; /* Relocation type and symbol index */ member in struct:__anon5254
520 Elf32_Word r_info; /* Relocation type and symbol index */ member in struct:__anon5255
527 Elf64_Xword r_info; /* Relocation type and symbol index */ member in struct:__anon5256
531 /* How to extract and insert information held in the r_info field. */
/external/valgrind/main/perf/
H A Dtinycc.c494 Elf32_Word r_info; /* Relocation type and symbol index */ member in struct:__anon14251
505 Elf64_Xword r_info; /* Relocation type and symbol index */ member in struct:__anon14252
513 Elf32_Word r_info; /* Relocation type and symbol index */ member in struct:__anon14253
520 Elf64_Xword r_info; /* Relocation type and symbol index */ member in struct:__anon14254
524 /* How to extract and insert information held in the r_info field. */
6560 rel->r_info = ELF32_R_INFO(sym->c, ELF32_R_TYPE(rel->r_info));
18372 rel->r_info = ELF32_R_INFO(symbol, type);
18474 sym_index = ELF32_R_SYM(rel->r_info);
18475 type = ELF32_R_TYPE(rel->r_info);
[all...]

Completed in 691 milliseconds