Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCVRecord.h68 Error forEachCodeViewRecord(ArrayRef<uint8_t> StreamBuffer, Func F) { in forEachCodeViewRecord() argument
69 while (!StreamBuffer.empty()) { in forEachCodeViewRecord()
70 if (StreamBuffer.size() < sizeof(RecordPrefix)) in forEachCodeViewRecord()
74 reinterpret_cast<const RecordPrefix *>(StreamBuffer.data()); in forEachCodeViewRecord()
77 if (StreamBuffer.size() < RealLen) in forEachCodeViewRecord()
80 ArrayRef<uint8_t> Data = StreamBuffer.take_front(RealLen); in forEachCodeViewRecord()
81 StreamBuffer = StreamBuffer.drop_front(RealLen); in forEachCodeViewRecord()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DStreamBuffer.h
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBLocationToDWARFExpression.cpp16 #include "lldb/Utility/StreamBuffer.h"
84 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in ConvertPDBLocationToDWARFExpression()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DDWARFLocationExpression.cpp16 #include "lldb/Utility/StreamBuffer.h"
118 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in MakeLocationExpressionInternal()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h307 template <unsigned N> class StreamBuffer; variable
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp852 StreamBuffer<32> stream(Stream::eBinary, address_size, byte_order); in CreateDWARFExpression()