Home
last modified time | relevance | path

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

12

/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/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DMachODumper.cpp310 MachO::section Sect = Obj->getSection(Sec); in getSection() local
311 Section.Address = Sect.addr; in getSection()
312 Section.Size = Sect.size; in getSection()
313 Section.Offset = Sect.offset; in getSection()
314 Section.Alignment = Sect.align; in getSection()
315 Section.RelocationTableOffset = Sect.reloff; in getSection()
316 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
317 Section.Flags = Sect.flags; in getSection()
318 Section.Reserved1 = Sect.reserved1; in getSection()
319 Section.Reserved2 = Sect.reserved2; in getSection()
[all …]
/external/compiler-rt/lib/profile/
DInstrProfilingPort.h37 #define COMPILER_RT_SECTION(Sect) __declspec(allocate(Sect)) argument
39 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect))) argument
DInstrProfData.inc638 #define INSTR_PROF_SECT_START(Sect) \
639 INSTR_PROF_CONCAT(__start_,Sect)
640 #define INSTR_PROF_SECT_STOP(Sect) \
641 INSTR_PROF_CONCAT(__stop_,Sect)
/external/llvm/lib/Object/
DMachOObjectFile.cpp164 MachO::section_64 Sect = O->getSection64(Sec); in getSectionFlags() local
165 return Sect.flags; in getSectionFlags()
167 MachO::section Sect = O->getSection(Sec); in getSectionFlags() local
168 return Sect.flags; in getSectionFlags()
623 MachO::section_64 Sect = getSection64(Sec); in getSectionSize() local
624 SectOffset = Sect.offset; in getSectionSize()
625 SectSize = Sect.size; in getSectionSize()
626 SectType = Sect.flags & MachO::SECTION_TYPE; in getSectionSize()
628 MachO::section Sect = getSection(Sec); in getSectionSize() local
629 SectOffset = Sect.offset; in getSectionSize()
[all …]
DObject.cpp102 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument
112 *unwrap(Sect) = *SecOrErr; in LLVMMoveToContainingSection()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DDWARFEmitter.cpp119 const DWARFYAML::PubSection &Sect, in EmitPubSection() argument
121 writeInitialLength(Sect.Length, OS, IsLittleEndian); in EmitPubSection()
122 writeInteger((uint16_t)Sect.Version, OS, IsLittleEndian); in EmitPubSection()
123 writeInteger((uint32_t)Sect.UnitOffset, OS, IsLittleEndian); in EmitPubSection()
124 writeInteger((uint32_t)Sect.UnitSize, OS, IsLittleEndian); in EmitPubSection()
125 for (auto Entry : Sect.Entries) { in EmitPubSection()
127 if (Sect.IsGNUStyle) in EmitPubSection()
/external/llvm/tools/dsymutil/
DMachOUtils.cpp259 auto Sect = getSection(Obj, Segment, LCI, i); in transferSegmentAndSections() local
260 Sect.offset = Sect.reloff = Sect.nreloc = 0; in transferSegmentAndSections()
262 MachO::swapStruct(Sect); in transferSegmentAndSections()
263 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect))); in transferSegmentAndSections()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DMachOUtils.cpp275 auto Sect = getSection(Obj, Segment, LCI, i); in transferSegmentAndSections() local
276 Sect.offset = Sect.reloff = Sect.nreloc = 0; in transferSegmentAndSections()
278 MachO::swapStruct(Sect); in transferSegmentAndSections()
279 Writer.W.OS.write(reinterpret_cast<char *>(&Sect), sizeof(Sect)); in transferSegmentAndSections()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DMachOObjectFile.cpp176 MachO::section_64 Sect = O.getSection64(Sec); in getSectionFlags() local
177 return Sect.flags; in getSectionFlags()
179 MachO::section Sect = O.getSection(Sec); in getSectionFlags() local
180 return Sect.flags; in getSectionFlags()
1890 MachO::section_64 Sect = getSection64(Sec); in getSectionSize() local
1891 SectOffset = Sect.offset; in getSectionSize()
1892 SectSize = Sect.size; in getSectionSize()
1893 SectType = Sect.flags & MachO::SECTION_TYPE; in getSectionSize()
1895 MachO::section Sect = getSection(Sec); in getSectionSize() local
1896 SectOffset = Sect.offset; in getSectionSize()
[all …]
DObject.cpp102 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument
112 *unwrap(Sect) = *SecOrErr; in LLVMMoveToContainingSection()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DDWARFEmitter.h36 void EmitPubSection(raw_ostream &OS, const PubSection &Sect,
/external/llvm/include/llvm-c/
DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
DIPDBSession.h50 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset,
/external/wpa_supplicant_8/wpa_supplicant/
Dtodo.txt19 * OTP Extended Responses (Sect. 5.5)
22 RFC 3748 Sect. 4.2
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
DNativeSession.h66 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset,
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/DIA/
DDIASession.cpp230 DIASession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset() argument
235 if (S_OK != Session->findSymbolByAddr(Sect, Offset, EnumVal, &Symbol)) in findSymbolBySectOffset()
/external/llvm/include/llvm/ProfileData/
DInstrProfData.inc638 #define INSTR_PROF_SECT_START(Sect) \
639 INSTR_PROF_CONCAT(__start_,Sect)
640 #define INSTR_PROF_SECT_STOP(Sect) \
641 INSTR_PROF_CONCAT(__stop_,Sect)
/external/skqp/src/pdf/
DSkPDFTag.cpp18 M(Sect); in tag_name_from_type()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ProfileData/
DInstrProfData.inc710 #define INSTR_PROF_SECT_START(Sect) \
711 INSTR_PROF_CONCAT(__start_,Sect)
712 #define INSTR_PROF_SECT_STOP(Sect) \
713 INSTR_PROF_CONCAT(__stop_,Sect)
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
DNativeSession.cpp209 NativeSession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset() argument
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCMachOStreamer.cpp85 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
/external/llvm/lib/MC/
DMCMachOStreamer.cpp72 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
/external/skia/src/pdf/
DSkPDFTag.cpp18 M(Sect); in tag_name_from_type()

12