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

Declarations

include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
   45 struct TpiStreamHeader;

References

include/llvm/DebugInfo/PDB/Native/TpiStream.h
   92   const TpiStreamHeader *Header;
include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
   83   const TpiStreamHeader *Header;
include/llvm/Support/Allocator.h
   81   template <typename T> T *Allocate(size_t Num = 1) {
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
   82     return static_cast<T *>(Allocate(Num * sizeof(T), alignof(T)));
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/TpiStream.cpp
   44   if (Reader.bytesRemaining() < sizeof(TpiStreamHeader))
   56   if (Header->HeaderSize != sizeof(TpiStreamHeader))
lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
   66   TpiStreamHeader *H = Allocator.Allocate<TpiStreamHeader>();
   66   TpiStreamHeader *H = Allocator.Allocate<TpiStreamHeader>();
   71   H->HeaderSize = sizeof(TpiStreamHeader);
  100   return sizeof(TpiStreamHeader) + TypeRecordBytes;
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;