/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
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()
|
D | BinaryStreamRef.cpp | 57 Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) override { in writeBytes() function in __anon13c78c790111::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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFStreamer.h | 37 virtual void writeBytes(llvm::StringRef Bytes) { in writeBytes() function 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; } in writeBytes() function
|
D | IceELFSection.cpp | 29 Str.writeBytes(MoreData); in appendData() 37 Str.writeBytes(MoreData); in appendData()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
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()
|
D | BinaryByteStream.h | 112 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()
|
D | BinaryStream.h | 80 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0;
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
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/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
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/ |
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()
|
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(final int fieldNumber, final ByteString value) throws IOException { in writeBytes() method in CodedOutputStream.OutputStreamEncoder [all …]
|
/third_party/flutter/engine/flutter/shell/platform/darwin/common/framework/Source/ |
D | FlutterStandardCodec.mm | 228 - (void)writeBytes:(const void*)bytes length:(NSUInteger)length { 242 [self writeBytes:&value length:2]; 245 [self writeBytes:&size length:4]; 261 [self writeBytes:value.UTF8String length:length]; 280 [self writeBytes:(UInt8*)&f length:8]; 287 [self writeBytes:(UInt8*)&n length:4]; 294 [self writeBytes:(UInt8*)&n length:8];
|
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/plugin/common/ |
D | StandardMessageCodec.java | 196 protected static final void writeBytes(ByteArrayOutputStream stream, byte[] bytes) { in writeBytes() method in StandardMessageCodec 243 writeBytes(stream, in writeValue() 250 writeBytes(stream, ((String) value).getBytes(UTF8)); in writeValue() 253 writeBytes(stream, (byte[]) value); in writeValue()
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
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()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
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()
|
D | HdmxEncoder.java | 66 result.writeBytes(HEADER_SIZE + RECORD_SIZE * numRecords, magBytes); in encode()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | DebugSymbolsSubsection.cpp | 24 if (auto EC = Writer.writeBytes(Record.RecordData)) in commit()
|
/third_party/protobuf/php/src/Google/Protobuf/Internal/ |
D | GPBWire.php | 375 return self::writeBytes($output, $value); 378 public static function writeBytes(&$output, $value) function in Google\\Protobuf\\Internal\\GPBWire 578 if (!GPBWire::writeBytes($output, $value)) {
|
/third_party/protobuf/js/compatibility_tests/v3.0.0/binary/ |
D | writer_test.js | 116 writer.writeBytes(3, new Uint8Array([1, 2, 3]));
|
/third_party/protobuf/js/compatibility_tests/v3.1.0/binary/ |
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/Transforms/Instrumentation/ |
D | GCOVProfiling.cpp | 211 void writeBytes(const char *Bytes, int Size) { in writeBytes() function in __anon4876e0190311::GCOVRecord 216 writeBytes(reinterpret_cast<char*>(&i), 4); in write() 231 writeBytes(s.data(), s.size()); in writeGCOVString() 236 writeBytes("\0\0\0\0", 4 - (s.size() % 4)); in writeGCOVString() 303 writeBytes(LinesTag, 4); in writeOut() 397 writeBytes(FunctionTag, 4); in writeOut() 413 writeBytes(BlockTag, 4); in writeOut() 427 writeBytes(EdgeTag, 4); in writeOut()
|
/third_party/protobuf/js/binary/ |
D | reader_test.js | 594 writer.writeBytes(len, bytes); 705 writer.writeBytes(4, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]); 724 writer.writeBytes(43, [255, 255, 255, 255, 255, 255, 255, 255, 255, 255]); 728 writer.writeBytes( 882 writer.writeBytes(1, blob);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/MSF/ |
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/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/ |
D | FontDataTests.java | 241 wfd.writeBytes(index, buffer, 0, buffer.length); in writeFontDataWithBuffer() 254 wfd.writeBytes(index, b, index, bytesRead); in writeFontDataWithSlidingWindow()
|
/third_party/flutter/skia/third_party/externals/sfntly/java/test/com/google/typography/font/sfntly/data/ |
D | FontDataTests.java | 241 wfd.writeBytes(index, buffer, 0, buffer.length); in writeFontDataWithBuffer() 254 wfd.writeBytes(index, b, index, bytesRead); in writeFontDataWithSlidingWindow()
|