HomeSort by relevance Sort by last modified time
    Searched refs:Sect (Results 1 - 10 of 10) sorted by null

  /external/compiler-rt/lib/profile/
InstrProfilingPort.h 23 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect)))
InstrProfData.inc 698 #define INSTR_PROF_SECT_START(Sect) \
699 INSTR_PROF_CONCAT(__start_,Sect)
700 #define INSTR_PROF_SECT_STOP(Sect) \
701 INSTR_PROF_CONCAT(__stop_,Sect)
  /external/llvm/tools/llvm-readobj/
MachODumper.cpp 308 MachO::section Sect = Obj->getSection(Sec);
309 Section.Address = Sect.addr;
310 Section.Size = Sect.size;
311 Section.Offset = Sect.offset;
312 Section.Alignment = Sect.align;
313 Section.RelocationTableOffset = Sect.reloff;
314 Section.NumRelocationTableEntries = Sect.nreloc;
315 Section.Flags = Sect.flags;
316 Section.Reserved1 = Sect.reserved1;
317 Section.Reserved2 = Sect.reserved2
    [all...]
  /external/llvm/include/llvm-c/
Object.h 52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
  /external/llvm/lib/Object/
MachOObjectFile.cpp 157 MachO::section_64 Sect = O->getSection64(Sec);
158 return Sect.flags;
160 MachO::section Sect = O->getSection(Sec);
161 return Sect.flags;
497 MachO::section_64 Sect = getSection64(Sec);
498 SectOffset = Sect.offset;
499 SectSize = Sect.size;
500 SectType = Sect.flags & MachO::SECTION_TYPE;
502 MachO::section Sect = getSection(Sec);
503 SectOffset = Sect.offset
    [all...]
Object.cpp 99 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
104 *unwrap(Sect) = *SecOrErr;
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 258 auto Sect = getSection(Obj, Segment, LCI, i);
259 Sect.offset = Sect.reloff = Sect.nreloc = 0;
261 MachO::swapStruct(Sect);
262 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect)));
  /external/llvm/include/llvm/ProfileData/
InstrProfData.inc 698 #define INSTR_PROF_SECT_START(Sect) \
699 INSTR_PROF_CONCAT(__start_,Sect)
700 #define INSTR_PROF_SECT_STOP(Sect) \
701 INSTR_PROF_CONCAT(__stop_,Sect)
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 71 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 611 static void DumpCstringSection(MachOObjectFile *O, const char *sect,
621 for (; i < sect_size && sect[i] != '\0'; i++)
622 DumpCstringChar(sect[i]);
623 if (i < sect_size && sect[i] == '\0')
644 static void DumpLiteral4Section(MachOObjectFile *O, const char *sect,
655 memcpy(&f, sect + i, sizeof(float));
659 memcpy(&l, sect + i, sizeof(uint32_t));
688 static void DumpLiteral8Section(MachOObjectFile *O, const char *sect,
699 memcpy(&d, sect + i, sizeof(double));
703 memcpy(&l0, sect + i, sizeof(uint32_t))
1032 const char *sect = reinterpret_cast<const char *>(BytesStr.data()); local
1109 const char *sect = reinterpret_cast<const char *>(BytesStr.data()); local
    [all...]

Completed in 618 milliseconds