/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | DataBuffer.h | 1 //===-- DataBuffer.h --------------------------------------------*- C++ -*-===// 21 /// \class DataBuffer DataBuffer.h "lldb/Core/DataBuffer.h" 24 /// DataBuffer is an abstract class that gets packaged into a shared 42 class DataBuffer { 44 virtual ~DataBuffer() = default; 67 static bool classof(const DataBuffer *data_buffer) { in isA() 81 /// \class DataBuffer DataBuffer [all...] |
H A D | DataBufferLLVM.h | 27 class DataBufferLLVM : public DataBuffer { 38 return ClassID == &ID || DataBuffer::isA(ClassID); in isA() 40 static bool classof(const DataBuffer *data_buffer) { in classof() 66 static bool classof(const DataBuffer *data_buffer) { in classof()
|
H A D | DataBufferHeap.h | 61 DataBufferHeap(const DataBuffer &data_buffer); 112 static bool classof(const DataBuffer *data_buffer) { in classof()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | InstrProfReader.h | 236 std::unique_ptr<MemoryBuffer> DataBuffer; 248 : DataBuffer(std::move(DataBuffer_)), Line(*DataBuffer, true, '#') {} in TextInstrProfReader() 313 std::unique_ptr<MemoryBuffer> DataBuffer; 352 RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer, in RawInstrProfReader() argument 355 : DataBuffer(std::move(DataBuffer)), in RawInstrProfReader() 362 static bool hasFormat(const MemoryBuffer &DataBuffer); 481 std::vector<NamedInstrProfRecord> DataBuffer; variable 684 std::unique_ptr<MemoryBuffer> DataBuffer; 714 std::unique_ptr<MemoryBuffer> DataBuffer, 716 : DataBuffer(std::move(DataBuffer)), in DataBuffer() function [all …]
|
H A D | MemProfReader.h | 147 static bool hasFormat(const MemoryBuffer &DataBuffer); 162 static std::vector<std::string> peekBuildIds(MemoryBuffer *DataBuffer); 190 Error initialize(std::unique_ptr<MemoryBuffer> DataBuffer); 192 Error readRawProfile(std::unique_ptr<MemoryBuffer> DataBuffer);
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | InstrProfReader.cpp | 93 readBinaryIdsInternal(const MemoryBuffer &DataBuffer, in readBinaryIdsInternal() argument 108 reinterpret_cast<const uint8_t *>(DataBuffer.getBufferEnd()); in readBinaryIdsInternal() 490 bool RawInstrProfReader<IntPtrT>::hasFormat(const MemoryBuffer &DataBuffer) { in hasFormat() argument 491 if (DataBuffer.getBufferSize() < sizeof(uint64_t)) in hasFormat() 494 *reinterpret_cast<const uint64_t *>(DataBuffer.getBufferStart()); in hasFormat() 501 if (!hasFormat(*DataBuffer)) in readHeader() 503 if (DataBuffer->getBufferSize() < sizeof(RawInstrProf::Header)) in readHeader() 506 DataBuffer->getBufferStart()); in readHeader() 513 const char *End = DataBuffer->getBufferEnd(); in readNextHeader() 586 const uint8_t *BufferEnd = (const uint8_t *)DataBuffer->getBufferEnd(); in readHeader() [all …]
|
H A D | MemProfReader.cpp | 367 Error RawMemProfReader::initialize(std::unique_ptr<MemoryBuffer> DataBuffer) { in initialize() argument 423 if (Error E = readRawProfile(std::move(DataBuffer))) in initialize() 650 RawMemProfReader::peekBuildIds(MemoryBuffer *DataBuffer) { in peekBuildIds() argument 651 const char *Next = DataBuffer->getBufferStart(); in peekBuildIds() 661 while (Next < DataBuffer->getBufferEnd()) { in peekBuildIds() 689 std::unique_ptr<MemoryBuffer> DataBuffer) { in readRawProfile() argument 690 const char *Next = DataBuffer->getBufferStart(); in readRawProfile() 692 while (Next < DataBuffer->getBufferEnd()) { in readRawProfile()
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | DataBufferHeap.cpp | 29 DataBufferHeap::DataBufferHeap(const DataBuffer &data_buffer) : m_data() { in DataBufferHeap() 71 char DataBuffer::ID;
|
H A D | DataExtractor.cpp | 205 const DataBuffer *data = m_data_sp.get(); in GetSharedDataOffset()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/ |
H A D | FileSystem.h | 155 std::shared_ptr<DataBuffer> CreateDataBuffer(const llvm::Twine &path, 158 std::shared_ptr<DataBuffer> CreateDataBuffer(const FileSpec &file_spec,
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | FileSystem.cpp | 295 std::shared_ptr<DataBuffer> 312 std::shared_ptr<DataBuffer>
|
/freebsd/contrib/llvm-project/lldb/include/lldb/ |
H A D | lldb-forward.h | 69 class DataBuffer; variable 333 typedef std::shared_ptr<lldb_private::DataBuffer> DataBufferSP;
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | posix_compat.h | 73 unsigned char DataBuffer[1]; member
|
/freebsd/contrib/llvm-project/lldb/docs/design/ |
H A D | overview.rst |
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/ |
H A D | ObjectContainerBSDArchive.cpp | 410 std::shared_ptr<DataBuffer> child_data_sp = in CreateInstance()
|
/freebsd/contrib/libarchive/test_utils/ |
H A D | test_main.c | 198 UCHAR DataBuffer[1]; member
|