Home
last modified time | relevance | path

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

/freebsd/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.cpp52 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) override { in readLongestContiguousChunk()
53 return BBS.writeBytes(Offset, Data); in readLongestContiguousChunk()
110 Error WritableBinaryStreamRef::writeBytes(uint64_t Offset, in WritableBinaryStreamRef()
115 return BorrowedImpl->writeBytes(ViewOffset + Offset, Data); in writeBytes() function in WritableBinaryStreamRef
57 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) override { writeBytes() function in __anon8e400b6a0111::MutableArrayRefImpl
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamWriter.h50 Error writeBytes(ArrayRef<uint8_t> Buffer);
63 return writeBytes(Buffer); in writeInteger()
133 return writeBytes( in writeObject()
151 return writeBytes( in writeArray()
H A DBinaryByteStream.h111 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Buffer) override { in writeBytes() function
170 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Buffer) override {
249 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) override {
250 return Impl.writeBytes(Offset, Data); in getLength()
171 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Buffer) override { writeBytes() function
252 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) override { writeBytes() function
H A DBinaryStream.h79 virtual Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) = 0;
H A DBinaryStreamRef.h258 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) const;
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/
H A DSimpleRemoteEPCUtils.cpp104 if (int ErrNo = writeBytes(HeaderBuffer, FDMsgHeader::Size)) in sendMessage()
106 if (int ErrNo = writeBytes(ArgBytes.data(), ArgBytes.size())) in sendMessage()
169 int FDSimpleRemoteEPCTransport::writeBytes(const char *Src, size_t Size) { in writeBytes() function in llvm::orc::FDSimpleRemoteEPCTransport
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSymbolsSubsection.cpp25 if (auto EC = Writer.writeBytes(Record.RecordData)) in commit()
H A DCodeViewRecordIO.cpp110 if (auto EC = Writer->writeBytes(Bytes)) in mapByteVectorTail()
244 if (auto EC = Writer->writeBytes(Guid.Guid)) in mapGuid()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/MSF/
H A DMappedBlockStream.cpp367 cantFail(Initializer.writeBytes(InitData)); in createFpmStream()
385 Error WritableMappedBlockStream::writeBytes(uint64_t Offset,
405 if (auto EC = WriteInterface.writeBytes(MsfOffset, ChunkData)) in writeBytes()
386 Error WritableMappedBlockStream::writeBytes(uint64_t Offset, writeBytes() function in WritableMappedBlockStream
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp269 cantFail(SourceWriter.writeBytes( in commitInjectedSources()
305 if (auto EC = NSW.writeBytes(arrayRefFromStringRef(NSE.second))) in commit()
H A DDbiModuleDescriptorBuilder.cpp182 if (auto EC = SymbolWriter.writeBytes(Sym.asArray())) in commitSymbolStream()
H A DTpiStreamBuilder.cpp192 if (auto EC = Writer.writeBytes(Rec)) in commit()
H A DGSIStreamBuilder.cpp389 if (Error E = Writer.writeBytes(Storage)) in writePublics()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/
H A DMappedBlockStream.h134 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Buffer) override;
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DSimpleRemoteEPCUtils.h132 int writeBytes(const char *Src, size_t Size);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp112 void writeBytes(const char *Bytes, int Size) { os->write(Bytes, Size); } in writeBytes() function in __anon09913f2a0211::GCOVProfiler
232 void writeBytes(const char *Bytes, int Size) { P->writeBytes(Bytes, Size); } in writeBytes() function in __anon09913f2a0311::GCOVRecord
/freebsd/contrib/llvm-project/lld/COFF/
H A DPDB.cpp703 if (Error e = writer.writeBytes(storage)) in writeAllModuleSymbolRecords()
883 return writer.writeBytes(relocatedBytes); in commit()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp822 Err(Writer.writeBytes(R)); in toDebugT()