Home
last modified time | relevance | path

Searched refs:StreamBuffer (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h60 Error forEachCodeViewRecord(ArrayRef<uint8_t> StreamBuffer, Func F) { in forEachCodeViewRecord() argument
61 while (!StreamBuffer.empty()) { in forEachCodeViewRecord()
62 if (StreamBuffer.size() < sizeof(RecordPrefix)) in forEachCodeViewRecord()
66 reinterpret_cast<const RecordPrefix *>(StreamBuffer.data()); in forEachCodeViewRecord()
69 if (StreamBuffer.size() < RealLen) in forEachCodeViewRecord()
72 ArrayRef<uint8_t> Data = StreamBuffer.take_front(RealLen); in forEachCodeViewRecord()
73 StreamBuffer = StreamBuffer.drop_front(RealLen); in forEachCodeViewRecord()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DStreamBuffer.h20 template <unsigned N> class StreamBuffer : public Stream {
22 StreamBuffer() : Stream(0, 4, lldb::eByteOrderBig), m_packet() {} in StreamBuffer() function
24 StreamBuffer(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order) in StreamBuffer() function
27 virtual ~StreamBuffer() {} in ~StreamBuffer()
/freebsd-12.1/contrib/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp837 std::unique_ptr<MemoryBuffer> StreamBuffer; in AnalyzeBitcode() local
841 if (openBitcodeFile(InputFilename, StreamBuffer, Stream, CurStreamType)) in AnalyzeBitcode()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp507 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in ConvertPDBLocationToDWARFExpression()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp559 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in MakeLocationExpressionInternal()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h220 template <unsigned N> class StreamBuffer; variable