Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h69 Error forEachCodeViewRecord(ArrayRef<uint8_t> StreamBuffer, Func F) { in forEachCodeViewRecord() argument
70 while (!StreamBuffer.empty()) { in forEachCodeViewRecord()
71 if (StreamBuffer.size() < sizeof(RecordPrefix)) in forEachCodeViewRecord()
75 reinterpret_cast<const RecordPrefix *>(StreamBuffer.data()); in forEachCodeViewRecord()
78 if (StreamBuffer.size() < RealLen) in forEachCodeViewRecord()
81 ArrayRef<uint8_t> Data = StreamBuffer.take_front(RealLen); in forEachCodeViewRecord()
82 StreamBuffer = StreamBuffer.drop_front(RealLen); in forEachCodeViewRecord()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DStreamBuffer.h19 template <unsigned N> class StreamBuffer : public Stream {
21 StreamBuffer() : Stream(0, 4, lldb::eByteOrderBig), m_packet() {} in StreamBuffer() function
23 StreamBuffer(uint32_t flags, uint32_t addr_size, lldb::ByteOrder byte_order) in StreamBuffer() function
26 ~StreamBuffer() override = default;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp83 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in ConvertPDBLocationToDWARFExpression()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp117 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in MakeLocationExpressionInternal()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h280 template <unsigned N> class StreamBuffer; variable