/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | BinaryStreamWriter.cpp | 28 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 D | BinaryStreamRef.cpp | 52 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 D | BinaryStreamWriter.h | 50 Error writeBytes(ArrayRef<uint8_t> Buffer); 63 return writeBytes(Buffer); in writeInteger() 133 return writeBytes( in writeObject() 151 return writeBytes( in writeArray()
|
H A D | BinaryByteStream.h | 111 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 D | BinaryStream.h | 79 virtual Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) = 0;
|
H A D | BinaryStreamRef.h | 258 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Data) const;
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Shared/ |
H A D | SimpleRemoteEPCUtils.cpp | 104 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 D | DebugSymbolsSubsection.cpp | 25 if (auto EC = Writer.writeBytes(Record.RecordData)) in commit()
|
H A D | CodeViewRecordIO.cpp | 110 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 D | MappedBlockStream.cpp | 367 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 D | PDBFileBuilder.cpp | 269 cantFail(SourceWriter.writeBytes( in commitInjectedSources() 305 if (auto EC = NSW.writeBytes(arrayRefFromStringRef(NSE.second))) in commit()
|
H A D | DbiModuleDescriptorBuilder.cpp | 182 if (auto EC = SymbolWriter.writeBytes(Sym.asArray())) in commitSymbolStream()
|
H A D | TpiStreamBuilder.cpp | 192 if (auto EC = Writer.writeBytes(Rec)) in commit()
|
H A D | GSIStreamBuilder.cpp | 389 if (Error E = Writer.writeBytes(Storage)) in writePublics()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/MSF/ |
H A D | MappedBlockStream.h | 134 Error writeBytes(uint64_t Offset, ArrayRef<uint8_t> Buffer) override;
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/ |
H A D | SimpleRemoteEPCUtils.h | 132 int writeBytes(const char *Src, size_t Size);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | GCOVProfiling.cpp | 112 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 D | PDB.cpp | 703 if (Error e = writer.writeBytes(storage)) in writeAllModuleSymbolRecords() 883 return writer.writeBytes(relocatedBytes); in commit()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLTypes.cpp | 822 Err(Writer.writeBytes(R)); in toDebugT()
|