/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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 | 57 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 D | BinaryStreamWriter.h | 56 Error writeBytes(ArrayRef<uint8_t> Buffer); 70 return writeBytes(Buffer); in writeInteger() 140 return writeBytes( in writeObject() 158 return writeBytes( in writeArray()
|
H A D | BinaryByteStream.h | 112 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 D | BinaryStream.h | 80 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceELFStreamer.h | 37 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 D | IceELFSection.cpp | 29 Str.writeBytes(MoreData); in appendData() 37 Str.writeBytes(MoreData); in appendData()
|
H A D | IceELFObjectWriter.cpp | 470 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 D | wave.c | 29 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 D | WritableFontData.java | 174 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 D | LazyFieldLite.java | 394 writer.writeBytes(fieldNumber, memoizedBytes); in writeTo() 396 writer.writeBytes(fieldNumber, delayedBytes); in writeTo() 400 writer.writeBytes(fieldNumber, ByteString.EMPTY); in writeTo()
|
H A D | CodedOutputStream.java | 305 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 D | CodedOutputStreamWriter.java | 128 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 D | EOTWriter.java | 126 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 D | HdmxEncoder.java | 66 result.writeBytes(HEADER_SIZE + RECORD_SIZE * numRecords, magBytes); in encode()
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
H A D | GPBWire.php | 375 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 D | GCOVProfiling.cpp | 211 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 D | DebugSymbolsSubsection.cpp | 24 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 D | MappedBlockStream.cpp | 369 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 D | writer_test.js | 116 writer.writeBytes(3, new Uint8Array([1, 2, 3]));
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
H A D | writer_test.js | 116 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 D | PDBFileBuilder.cpp | 259 cantFail(SourceWriter.writeBytes( in commitInjectedSources() 293 if (auto EC = NSW.writeBytes(arrayRefFromStringRef(NSE.second))) in commit()
|
H A D | DbiModuleDescriptorBuilder.cpp | 159 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 D | FontDataTests.java | 241 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 D | PostScriptTableBuilder.java | 410 data.writeBytes(index, nameBytes, 0, nameBytes.length); in build()
|