Home
last modified time | relevance | path

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

12

/external/swiftshader/third_party/LLVM/lib/Object/
DMachOObjectFile.cpp349 InMemoryStruct<macho::Section64> Sect; in getSectionName() local
350 MachOObj->ReadSection64(LCI, DRI.d.b, Sect); in getSectionName()
352 strcpy(result, Sect->SegmentName); in getSectionName()
354 strcat(result, Sect->Name); in getSectionName()
359 InMemoryStruct<macho::Section> Sect; in getSectionName() local
360 MachOObj->ReadSection(LCI, DRI.d.b, Sect); in getSectionName()
362 strcpy(result, Sect->SegmentName); in getSectionName()
364 strcat(result, Sect->Name); in getSectionName()
373 InMemoryStruct<macho::Section64> Sect; in getSectionAddress() local
374 getSection64(DRI, Sect); in getSectionAddress()
[all …]
/external/swiftshader/third_party/LLVM/tools/macho-dump/
Dmacho-dump.cpp143 InMemoryStruct<macho::Section> Sect; in DumpSegmentCommand() local
144 Obj.ReadSection(LCI, i, Sect); in DumpSegmentCommand()
150 if ((Res = DumpSectionData(Obj, i, StringRef(Sect->Name, 16), in DumpSegmentCommand()
151 StringRef(Sect->SegmentName, 16), Sect->Address, in DumpSegmentCommand()
152 Sect->Size, Sect->Offset, Sect->Align, in DumpSegmentCommand()
153 Sect->RelocationTableOffset, in DumpSegmentCommand()
154 Sect->NumRelocationTableEntries, Sect->Flags, in DumpSegmentCommand()
155 Sect->Reserved1, Sect->Reserved2))) in DumpSegmentCommand()
179 InMemoryStruct<macho::Section64> Sect; in DumpSegment64Command() local
180 Obj.ReadSection64(LCI, i, Sect); in DumpSegment64Command()
[all …]
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp144 InMemoryStruct<macho::Section> Sect; in loadSegment32() local
145 Obj->ReadSection(*SegmentLCI, SectNum, Sect); in loadSegment32()
146 if (!Sect) in loadSegment32()
150 if (Sect->Flags != 0x80000400) in loadSegment32()
186 (Sect->Address + STE->Value) << "\n"); in loadSegment32()
199 uint64_t StartOffset = Sect->Address + Symbols[i].first; in loadSegment32()
208 uint64_t EndOffset = Sect->Size - 1; in loadSegment32()
215 for (unsigned j = 0; j != Sect->NumRelocationTableEntries; ++j) { in loadSegment32()
217 Obj->ReadRelocationEntry(Sect->RelocationTableOffset, j, RE); in loadSegment32()
283 InMemoryStruct<macho::Section64> Sect; in loadSegment64() local
[all …]
/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/tools/llvm-objdump/
DMachODump.cpp105 static Section copySection(const T &Sect) { in copySection() argument
107 memcpy(S.Name, Sect->Name, 16); in copySection()
108 S.Address = Sect->Address; in copySection()
109 S.Size = Sect->Size; in copySection()
110 S.Offset = Sect->Offset; in copySection()
111 S.NumRelocs = Sect->NumRelocationTableEntries; in copySection()
112 S.RelocTableOffset = Sect->RelocationTableOffset; in copySection()
229 InMemoryStruct<macho::Section> Sect; in getSectionsAndSymbols() local
230 MachOObj->ReadSection(LCI, SectNum, Sect); in getSectionsAndSymbols()
231 Sections.push_back(copySection(Sect)); in getSectionsAndSymbols()
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm-c/
DObject.h52 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/
DIPDBSession.h50 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset,
/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/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/skqp/src/pdf/
DSkPDFTag.cpp18 M(Sect); in tag_name_from_type()

12