HomeSort by relevance Sort by last modified time
    Searched defs:d_tag (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /art/compiler/
elf_fixup.cc 71 Elf32_Word d_tag = elf_dyn.d_tag; local
72 if (IsDynamicSectionPointer(d_tag, elf_file.GetHeader().e_machine)) {
  /art/runtime/
elf_utils.h 49 /* MIPS dependent d_tag field for Elf32_Dyn. */
74 inline bool IsDynamicSectionPointer(Elf32_Word d_tag, Elf32_Word e_machine) {
75 switch (d_tag) {
76 // case 1: well known d_tag values that imply Elf32_Dyn.d_un contains an address in d_ptr
117 LOG(FATAL) << "Illegal d_tag value 0x" << std::hex << d_tag; local
121 // case 2: "regular" DT_* ranges where even d_tag values imply an address in d_ptr
122 if ((DT_ENCODING < d_tag && d_tag < DT_LOOS)
123 || (DT_LOOS < d_tag && d_tag < DT_HIOS
149 LOG(FATAL) << "Unknown MIPS d_tag value 0x" << std::hex << d_tag; local
159 LOG(FATAL) << "Unknown d_tag value 0x" << std::hex << d_tag; local
    [all...]