Home
last modified time | relevance | path

Searched refs:DataEntry (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DCOFFObjectFile.cpp546 const data_directory *DataEntry = getDataDirectory(COFF::IMPORT_TABLE); in initImportTablePtr() local
547 if (!DataEntry) in initImportTablePtr()
551 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
554 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
561 if (Error E = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
570 const data_directory *DataEntry = in initDelayImportTablePtr() local
572 if (!DataEntry) in initDelayImportTablePtr()
574 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
577 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
578 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
H A DWindowsResource.cpp429 UNWRAP_REF_OR_RETURN(DataEntry, RSR.getEntryData(Entry)); in addChildren()
436 UNWRAP_OR_RETURN(Contents, RSR.getContents(DataEntry)); in addChildren()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp1899 auto &DataEntry = in printResourceDirectoryTable() local
1901 W.printHex("DataRVA", DataEntry.DataRVA); in printResourceDirectoryTable()
1902 W.printNumber("DataSize", DataEntry.DataSize); in printResourceDirectoryTable()
1903 W.printNumber("Codepage", DataEntry.Codepage); in printResourceDirectoryTable()
1904 W.printNumber("Reserved", DataEntry.Reserved); in printResourceDirectoryTable()
1906 unwrapOrError(Obj->getFileName(), RSF.getContents(DataEntry)); in printResourceDirectoryTable()