Home
last modified time | relevance | path

Searched refs:Sect (Results 1 – 11 of 11) sorted by relevance

/external/llvm/tools/llvm-readobj/
DMachODumper.cpp308 MachO::section Sect = Obj->getSection(Sec); in getSection() local
309 Section.Address = Sect.addr; in getSection()
310 Section.Size = Sect.size; in getSection()
311 Section.Offset = Sect.offset; in getSection()
312 Section.Alignment = Sect.align; in getSection()
313 Section.RelocationTableOffset = Sect.reloff; in getSection()
314 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
315 Section.Flags = Sect.flags; in getSection()
316 Section.Reserved1 = Sect.reserved1; in getSection()
317 Section.Reserved2 = Sect.reserved2; in getSection()
[all …]
/external/llvm/lib/Object/
DMachOObjectFile.cpp157 MachO::section_64 Sect = O->getSection64(Sec); in getSectionFlags() local
158 return Sect.flags; in getSectionFlags()
160 MachO::section Sect = O->getSection(Sec); in getSectionFlags() local
161 return Sect.flags; in getSectionFlags()
497 MachO::section_64 Sect = getSection64(Sec); in getSectionSize() local
498 SectOffset = Sect.offset; in getSectionSize()
499 SectSize = Sect.size; in getSectionSize()
500 SectType = Sect.flags & MachO::SECTION_TYPE; in getSectionSize()
502 MachO::section Sect = getSection(Sec); in getSectionSize() local
503 SectOffset = Sect.offset; in getSectionSize()
[all …]
DObject.cpp99 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument
104 *unwrap(Sect) = *SecOrErr; in LLVMMoveToContainingSection()
/external/compiler-rt/lib/profile/
DInstrProfilingPort.h23 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect))) argument
DInstrProfData.inc698 #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/dsymutil/
DMachOUtils.cpp258 auto Sect = getSection(Obj, Segment, LCI, i); in transferSegmentAndSections() local
259 Sect.offset = Sect.reloff = Sect.nreloc = 0; in transferSegmentAndSections()
261 MachO::swapStruct(Sect); in transferSegmentAndSections()
262 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect))); in transferSegmentAndSections()
/external/llvm/include/llvm-c/
DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/external/wpa_supplicant_8/wpa_supplicant/
Dtodo.txt19 * OTP Extended Responses (Sect. 5.5)
22 RFC 3748 Sect. 4.2
/external/llvm/include/llvm/ProfileData/
DInstrProfData.inc698 #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/
DMCMachOStreamer.cpp71 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
/external/llvm/tools/llvm-objdump/
DMachODump.cpp824 auto Sect = std::find_if(LiteralSections.begin(), LiteralSections.end(), in DumpLiteralPointerSection() local
829 if (Sect == LiteralSections.end()) { in DumpLiteralPointerSection()
834 uint64_t SectAddress = Sect->getAddress(); in DumpLiteralPointerSection()
835 uint64_t SectSize = Sect->getSize(); in DumpLiteralPointerSection()
838 Sect->getName(SectName); in DumpLiteralPointerSection()
839 DataRefImpl Ref = Sect->getRawDataRefImpl(); in DumpLiteralPointerSection()
853 Sect->getContents(BytesStr); in DumpLiteralPointerSection()