Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
DCOFFObjectFile.cpp553 const data_directory *DataEntry = getDataDirectory(COFF::IMPORT_TABLE); in initImportTablePtr() local
554 if (!DataEntry) in initImportTablePtr()
558 if (DataEntry->RelativeVirtualAddress == 0) in initImportTablePtr()
561 uint32_t ImportTableRva = DataEntry->RelativeVirtualAddress; in initImportTablePtr()
568 if (Error E = checkOffset(Data, IntPtr, DataEntry->Size)) in initImportTablePtr()
577 const data_directory *DataEntry = in initDelayImportTablePtr() local
579 if (!DataEntry) in initDelayImportTablePtr()
581 if (DataEntry->RelativeVirtualAddress == 0) in initDelayImportTablePtr()
584 uint32_t RVA = DataEntry->RelativeVirtualAddress; in initDelayImportTablePtr()
585 NumberOfDelayImportDirectory = DataEntry->Size / in initDelayImportTablePtr()
[all …]
DWindowsResource.cpp429 UNWRAP_REF_OR_RETURN(DataEntry, RSR.getEntryData(Entry)); in addChildren()
436 UNWRAP_OR_RETURN(Contents, RSR.getContents(DataEntry)); in addChildren()
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
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()