reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Object/COFFImportFile.h
   42     OS << StringRef(Data.getBufferStart() + sizeof(coff_import_header));
   60   const coff_import_header *getCOFFImportHeader() const {
lib/Object/COFFImportFile.cpp
  467   size_t Size = sizeof(coff_import_header) + ImpSize;
  473   auto *Imp = reinterpret_cast<coff_import_header *>(P);
tools/lld/COFF/InputFiles.cpp
  831   const auto *hdr = reinterpret_cast<const coff_import_header *>(buf);
  840   const char *nameStart = buf + sizeof(coff_import_header) + name.size() + 1;
tools/lld/COFF/InputFiles.h
  320   const coff_import_header *hdr;
tools/llvm-readobj/COFFImportDumper.cpp
   28   const coff_import_header *H = File->getCOFFImportHeader();