Home
last modified time | relevance | path

Searched refs:ByteStream (Results 1 – 12 of 12) sorted by relevance

/external/llvm/lib/DebugInfo/CodeView/
DByteStream.cpp36 Error ByteStream<Writable>::readBytes(uint32_t Offset, uint32_t Size, in readBytes()
47 Error ByteStream<Writable>::readLongestContiguousChunk( in readLongestContiguousChunk()
56 Error ByteStream<Writable>::writeBytes(uint32_t Offset, in writeBytes()
61 template <bool Writable> uint32_t ByteStream<Writable>::getLength() const { in getLength()
65 template <bool Writable> Error ByteStream<Writable>::commit() const { in commit()
69 template <bool Writable> StringRef ByteStream<Writable>::str() const { in str()
76 template class ByteStream<true>; variable
77 template class ByteStream<false>; variable
DCMakeLists.txt2 ByteStream.cpp
DTypeDumper.cpp684 ByteStream<> Stream(Data); in dump()
/external/llvm/include/llvm/DebugInfo/CodeView/
DByteStream.h25 template <bool Writable = false> class ByteStream : public StreamInterface {
30 ByteStream() {} in ByteStream() function
31 explicit ByteStream(ArrayType Data) : Data(Data) {} in ByteStream() function
32 ~ByteStream() override {} in ~ByteStream()
52 extern template class ByteStream<true>;
53 extern template class ByteStream<false>;
/external/javassist/src/main/javassist/bytecode/
DClassFileWriter.java76 private ByteStream output;
89 output = new ByteStream(512); in ClassFileWriter()
235 static void writeAttribute(ByteStream bs, AttributeWriter aw, int attrCount) { in writeAttribute()
254 protected ByteStream output;
259 output = new ByteStream(128); in FieldWriter()
312 protected ByteStream output;
325 output = new ByteStream(256); in MethodWriter()
521 ByteStream output;
525 ConstPoolWriter(ByteStream out) { in ConstPoolWriter()
DByteStream.java21 final class ByteStream extends OutputStream { class
25 public ByteStream() { this(32); } in ByteStream() method in ByteStream
27 public ByteStream(int size) { in ByteStream() method in ByteStream
/external/llvm/tools/llvm-pdbdump/fuzzer/
Dllvm-pdbdump-fuzzer.cpp34 class InputByteStream : public codeview::ByteStream<false> {
37 : ByteStream(ArrayRef<uint8_t>(Buffer->getBuffer().bytes_begin(), in InputByteStream()
/external/llvm/lib/DebugInfo/PDB/Raw/
DRawSession.cpp32 class InputByteStream : public codeview::ByteStream<false> {
35 : ByteStream(ArrayRef<uint8_t>(Buffer->getBuffer().bytes_begin(), in InputByteStream()
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp73 class FileBufferByteStream : public ByteStream<true> {
76 : ByteStream(MutableArrayRef<uint8_t>(Buffer->getBufferStart(), in FileBufferByteStream()
/external/llvm/unittests/DebugInfo/PDB/
DMappedBlockStreamTest.cpp401 ByteStream<true> SourceStream(SrcData); in TEST()
/external/llvm/tools/llvm-readobj/
DCOFFDumper.cpp956 ByteStream<> Stream(BinaryData); in printCodeViewSymbolsSubsection()
1064 ByteStream<> Stream(Bytes); in mergeCodeViewTypes()
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp478 ByteStream<> Stream({Record.bytes_begin(), Record.bytes_end()}); in emitTypeInformation()