Home
last modified time | relevance | path

Searched refs:writeBytes (Results 1 – 17 of 17) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamWriter.cpp28 Error BinaryStreamWriter::writeBytes(ArrayRef<uint8_t> Buffer) { in writeBytes() function in BinaryStreamWriter
29 if (auto EC = Stream.writeBytes(Offset, Buffer)) in writeBytes()
38 return writeBytes({EncodedBytes, Size}); in writeULEB128()
44 return writeBytes({EncodedBytes, Size}); in writeSLEB128()
58 return writeBytes(arrayRefFromStringRef(Str)); in writeFixedString()
76 if (auto EC = writeBytes(Chunk)) in writeStreamRef()
H A DBinaryStreamRef.cpp57 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) override { in writeBytes() function in __anon8926229e0111::MutableArrayRefImpl
58 return BBS.writeBytes(Offset, Data); in writeBytes()
117 Error WritableBinaryStreamRef::writeBytes(uint32_t Offset, in writeBytes() function in WritableBinaryStreamRef
122 return BorrowedImpl->writeBytes(ViewOffset + Offset, Data); in writeBytes()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamWriter.h56 Error writeBytes(ArrayRef<uint8_t> Buffer);
70 return writeBytes(Buffer); in writeInteger()
140 return writeBytes( in writeObject()
158 return writeBytes( in writeArray()
H A DBinaryByteStream.h112 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Buffer) override { in writeBytes() function
172 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Buffer) override { in writeBytes() function
255 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) override { in writeBytes() function
256 return Impl.writeBytes(Offset, Data); in writeBytes()
H A DBinaryStream.h80 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0;
H A DBinaryStreamRef.h263 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) const;
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSymbolsSubsection.cpp24 if (auto EC = Writer.writeBytes(Record.RecordData)) in commit()
H A DCodeViewRecordIO.cpp107 if (auto EC = Writer->writeBytes(Bytes)) in mapByteVectorTail()
241 if (auto EC = Writer->writeBytes(Guid.Guid)) in mapGuid()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp369 cantFail(Initializer.writeBytes(InitData)); in createFpmStream()
387 Error WritableMappedBlockStream::writeBytes(uint32_t Offset, in writeBytes() function in WritableMappedBlockStream
407 if (auto EC = WriteInterface.writeBytes(MsfOffset, ChunkData)) in writeBytes()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp257 cantFail(SourceWriter.writeBytes( in commitInjectedSources()
291 if (auto EC = NSW.writeBytes(arrayRefFromStringRef(NSE.second))) in commit()
H A DDbiModuleDescriptorBuilder.cpp178 if (auto EC = SymbolWriter.writeBytes(Sym.asArray())) in commitSymbolStream()
H A DTpiStreamBuilder.cpp194 if (auto EC = Writer.writeBytes(Rec)) in commit()
H A DGSIStreamBuilder.cpp387 if (Error E = Writer.writeBytes(Storage)) in writePublics()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h134 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Buffer) override;
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp118 void writeBytes(const char *Bytes, int Size) { os->write(Bytes, Size); } in writeBytes() function in __anon46c724de0211::GCOVProfiler
285 void writeBytes(const char *Bytes, int Size) { P->writeBytes(Bytes, Size); } in writeBytes() function in __anon46c724de0611::GCOVRecord
/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DPDB.cpp707 if (Error e = writer.writeBytes(storage)) in writeAllModuleSymbolRecords()
880 return writer.writeBytes(relocatedBytes); in commit()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp818 Err(Writer.writeBytes(R)); in toDebugT()