Searched refs:SectionTable (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | COFFImportFile.cpp | 203 const coff_section SectionTable[NumberOfSections] = { in createImportDescriptor() local 230 append(Buffer, SectionTable); in createImportDescriptor() 339 const coff_section SectionTable[NumberOfSections] = { in createNullImportDescriptor() local 353 append(Buffer, SectionTable); in createNullImportDescriptor() 402 const coff_section SectionTable[NumberOfSections] = { in createNullThunk() local 431 append(Buffer, SectionTable); in createNullThunk() 509 const coff_section SectionTable[NumberOfSections] = { in createWeakExternal() local 520 append(Buffer, SectionTable); in createWeakExternal()
|
D | COFFObjectFile.cpp | 123 if (Addr < SectionTable || Addr >= (SectionTable + getNumberOfSections())) in toSec() 126 uintptr_t Offset = uintptr_t(Addr) - uintptr_t(SectionTable); in toSec() 288 return toSec(Sec) - SectionTable; in getSectionIndex() 333 uintptr_t(Sec.getRawDataRefImpl().p) - uintptr_t(SectionTable); in getSectionID() 667 DataDirectory(nullptr), SectionTable(nullptr), SymbolTable16(nullptr), in COFFObjectFile() 760 if ((EC = getObject(SectionTable, Data, base() + CurPtr, in COFFObjectFile() 859 Ret.p = reinterpret_cast<uintptr_t>(SectionTable); in section_begin() 867 Ret.p = reinterpret_cast<uintptr_t>(SectionTable + NumSections); in section_end() 965 Result = SectionTable + (Index - 1); in getSection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 152 std::vector<const MCSectionELF *> SectionTable; member 345 SectionTable.push_back(Sec); in addToSectionTable() 347 return SectionTable.size(); in addToSectionTable() 770 SectionTable[SymtabShndxSectionIndex - 1]; in computeSymbolTable() 981 const MCSectionELF *StrtabSection = SectionTable[StringTableIndex - 1]; in createStringTable() 1041 const unsigned NumSections = SectionTable.size(); in writeSectionHeader() 1048 for (const MCSectionELF *Section : SectionTable) { in writeSectionHeader() 1224 (SectionTable.size() + 1 >= ELF::SHN_LORESERVE) ? (uint16_t)ELF::SHN_UNDEF in writeObject() 1225 : SectionTable.size() + 1, in writeObject()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
D | BitcodeReader.cpp | 493 std::vector<std::string> SectionTable; member in __anone9adfa530411::BitcodeReader 3122 if (Record[5] - 1 >= SectionTable.size()) in parseGlobalVarRecord() 3124 Section = SectionTable[Record[5] - 1]; in parseGlobalVarRecord() 3253 if (Record[6] - 1 >= SectionTable.size()) in parseFunctionRecord() 3255 Func->setSection(SectionTable[Record[6] - 1]); in parseFunctionRecord() 3607 SectionTable.push_back(S); in parseModule()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | COFF.h | 774 const coff_section *SectionTable; variable
|