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

Declarations

include/llvm/DebugInfo/PDB/Native/PublicsStream.h
   24 struct GSIHashHeader;

References

include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
   52   const GSIHashHeader *HashHdr;
   65   typedef GSIHashHeader iterator;
include/llvm/Support/BinaryStreamReader.h
  169   template <typename T> Error readObject(const T *&Dest) {
  171     if (auto EC = readBytes(Buffer, sizeof(T)))
include/llvm/Support/BinaryStreamWriter.h
  135   template <typename T> Error writeObject(const T &Obj) {
  136     static_assert(!std::is_pointer<T>::value,
  141         ArrayRef<uint8_t>(reinterpret_cast<const uint8_t *>(&Obj), sizeof(T)));
lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
   80   uint32_t Size = sizeof(GSIHashHeader);
   95   GSIHashHeader Header;
   96   Header.VerSignature = GSIHashHeader::HdrSignature;
   97   Header.VerHdr = GSIHashHeader::HdrVersion;
lib/DebugInfo/PDB/Native/GlobalsStream.cpp
   84 static Error checkHashHdrVersion(const GSIHashHeader *HashHdr) {
   85   if (HashHdr->VerHdr != GSIHashHeader::HdrVersion)
   93 static Error readGSIHashHeader(const GSIHashHeader *&HashHdr,
   99   if (HashHdr->VerSignature != GSIHashHeader::HdrSignature)
  108                                 const GSIHashHeader *HashHdr,
lib/DebugInfo/PDB/Native/PublicsStream.cpp
   63       sizeof(PublicsStreamHeader) + sizeof(GSIHashHeader))
usr/include/c++/7.4.0/type_traits
  381     : public __is_pointer_helper<typename remove_cv<_Tp>::type>::type
 1554     { typedef _Tp     type; };
 1563     { typedef _Tp     type; };
 1574       remove_const<typename remove_volatile<_Tp>::type>::type     type;