Home
last modified time | relevance | path

Searched refs:writeBytes (Results 1 - 25 of 60) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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 {
58 return BBS.writeBytes(Offset, Data);
117 Error WritableBinaryStreamRef::writeBytes(uint32_t Offset, in writeBytes() function in WritableBinaryStreamRef
122 return BorrowedImpl->writeBytes(ViewOffset + Offset, Data); in writeBytes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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 {
172 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Buffer) override {
255 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) override {
256 return Impl.writeBytes(Offset, Data);
H A DBinaryStream.h80 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0;
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
H A DIceELFStreamer.h37 virtual void writeBytes(llvm::StringRef Bytes) { in writeBytes() function in Ice::ELFStreamer
80 writeBytes(llvm::StringRef(Zeros, 16)); in writeZeroPadding()
82 writeBytes(llvm::StringRef(Zeros, N % 16)); in writeZeroPadding()
97 void writeBytes(llvm::StringRef Bytes) override { Out << Bytes; }
H A DIceELFSection.cpp29 Str.writeBytes(MoreData); in appendData()
37 Str.writeBytes(MoreData); in appendData()
H A DIceELFObjectWriter.cpp470 Str.writeBytes(llvm::StringRef(ElfMagic, strlen(ElfMagic))); in writeELFHeaderInternal()
550 Str.writeBytes(llvm::StringRef(Buf, WriteAmt));
642 Str.writeBytes(ShStrTab->getSectionData()); in writeNonUserSections()
660 Str.writeBytes(StrTab->getSectionData()); in writeNonUserSections()
/third_party/pulseaudio/sonic/
H A Dwave.c29 static void writeBytes( in writeBytes() function
52 writeBytes(file, string, strlen(string)); in writeString()
67 writeBytes(file, bytes, 4); in writeInt()
82 writeBytes(file, bytes, 2); in writeShort()
362 writeBytes(file, bytes, bytePos); in writeToWaveFile()
370 writeBytes(file, bytes, bytePos); in writeToWaveFile()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/
H A DWritableFontData.java174 public int writeBytes(int index, byte[] b, int offset, int length) { in writeBytes() method in WritableFontData
233 public int writeBytes(int index, byte[] b) { in writeBytes() method in WritableFontData
234 return this.writeBytes(index, b, 0, b.length); in writeBytes()
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyFieldLite.java394 writer.writeBytes(fieldNumber, memoizedBytes); in writeTo()
396 writer.writeBytes(fieldNumber, delayedBytes); in writeTo()
400 writer.writeBytes(fieldNumber, ByteString.EMPTY); in writeTo()
H A DCodedOutputStream.java305 public abstract void writeBytes(int fieldNumber, ByteString value) throws IOException; in writeBytes() method in CodedOutputStream
1220 public final void writeBytes(final int fieldNumber, final ByteString value) throws IOException { in writeBytes() method in CodedOutputStream.ArrayEncoder
1299 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
1613 public void writeBytes(final int fieldNumber, final ByteString value) throws IOException { in writeBytes() method in CodedOutputStream.SafeDirectNioEncoder
1665 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
1947 public void writeBytes(int fieldNumber, ByteString value) throws IOException { in writeBytes() method in CodedOutputStream.UnsafeDirectNioEncoder
1995 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
2459 public void writeBytes(final int fieldNumber, final ByteString value) throws IOException { in writeBytes() method in CodedOutputStream.ByteOutputEncoder
2534 writeBytes(WireFormat.MESSAGE_SET_MESSAGE, value); in writeRawMessageSetExtension()
2773 public void writeBytes(fina method in CodedOutputStream.OutputStreamEncoder
[all...]
H A DCodedOutputStreamWriter.java128 public void writeBytes(int fieldNumber, ByteString value) throws IOException { in writeBytes() method in CodedOutputStreamWriter
129 output.writeBytes(fieldNumber, value); in writeBytes()
419 output.writeBytes(fieldNumber, (ByteString) value); in writeLazyString()
426 output.writeBytes(fieldNumber, value.get(i)); in writeBytesList()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DEOTWriter.java126 writableFontData.writeBytes(index, fontData, 0, fontData.length); // FontData[FontDataSize] in convert()
145 return writableFontData.writeBytes(index, fontPANOSE, 0, fontPANOSE.length); in writeFontPANOSE()
187 index += writableFontData.writeBytes(index, str, 0, str.length); in writeUTF16String()
H A DHdmxEncoder.java66 result.writeBytes(HEADER_SIZE + RECORD_SIZE * numRecords, magBytes); in encode()
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DGPBWire.php375 return self::writeBytes($output, $value);
378 public static function writeBytes(&$output, $value) function
578 if (!GPBWire::writeBytes($output, $value)) {
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp211 void writeBytes(const char *Bytes, int Size) {
216 writeBytes(reinterpret_cast<char*>(&i), 4);
231 writeBytes(s.data(), s.size());
236 writeBytes("\0\0\0\0", 4 - (s.size() % 4));
303 writeBytes(LinesTag, 4);
397 writeBytes(FunctionTag, 4);
413 writeBytes(BlockTag, 4);
427 writeBytes(EdgeTag, 4);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DDebugSymbolsSubsection.cpp24 if (auto EC = Writer.writeBytes(Record.RecordData)) in commit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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()
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/
H A Dwriter_test.js116 writer.writeBytes(3, new Uint8Array([1, 2, 3]));
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/
H A Dwriter_test.js116 writer.writeBytes(3, new Uint8Array([1, 2, 3]));
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFileBuilder.cpp259 cantFail(SourceWriter.writeBytes( in commitInjectedSources()
293 if (auto EC = NSW.writeBytes(arrayRefFromStringRef(NSE.second))) in commit()
H A DDbiModuleDescriptorBuilder.cpp159 if (auto EC = SymbolWriter.writeBytes(Syms)) in commit()
/third_party/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/
H A DFontDataTests.java241 wfd.writeBytes(index, buffer, 0, buffer.length); in writeFontDataWithBuffer()
254 wfd.writeBytes(index, b, index, bytesRead); in writeFontDataWithSlidingWindow()
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/subsetter/
H A DPostScriptTableBuilder.java410 data.writeBytes(index, nameBytes, 0, nameBytes.length); in build()

Completed in 21 milliseconds

123