/third_party/protobuf/csharp/src/Google.Protobuf/ |
D | WritingPrimitives.cs | 185 WriteRawBytes(ref buffer, ref state, bytes); in WriteString() 208 WriteRawBytes(ref buffer, ref state, bytes); in WriteString() 219 WriteRawBytes(ref buffer, ref state, value.Span); in WriteBytes() 418 …public static void WriteRawBytes(ref Span<byte> buffer, ref WriterInternalState state, byte[] valu… in WriteRawBytes() method in Google.Protobuf.WritingPrimitives 420 WriteRawBytes(ref buffer, ref state, new ReadOnlySpan<byte>(value)); in WriteRawBytes() 426 …public static void WriteRawBytes(ref Span<byte> buffer, ref WriterInternalState state, byte[] valu… in WriteRawBytes() method in Google.Protobuf.WritingPrimitives 428 WriteRawBytes(ref buffer, ref state, new ReadOnlySpan<byte>(value, offset, length)); in WriteRawBytes() 434 …public static void WriteRawBytes(ref Span<byte> buffer, ref WriterInternalState state, ReadOnlySpa… in WriteRawBytes() method in Google.Protobuf.WritingPrimitives
|
D | CodedOutputStream.cs | 523 internal void WriteRawBytes(byte[] value) in WriteRawBytes() method in Google.Protobuf.CodedOutputStream 525 WriteRawBytes(value, 0, value.Length); in WriteRawBytes() 531 internal void WriteRawBytes(byte[] value, int offset, int length) in WriteRawBytes() method in Google.Protobuf.CodedOutputStream 534 WritingPrimitives.WriteRawBytes(ref span, ref state, value, offset, length); in WriteRawBytes()
|
D | ByteString.cs | 414 outputStream.WriteRawBytes(bytes, 0, bytes.Length); in WriteRawBytesTo()
|
/third_party/node/src/ |
D | node_serdes.cc | 56 static void WriteRawBytes(const FunctionCallbackInfo<Value>& args); 272 void SerializerContext::WriteRawBytes(const FunctionCallbackInfo<Value>& args) { in WriteRawBytes() function in node::serdes::SerializerContext 282 ctx->serializer_.WriteRawBytes(bytes.data(), bytes.length()); in WriteRawBytes() 479 isolate, ser, "writeRawBytes", SerializerContext::WriteRawBytes); in Initialize() 526 registry->Register(SerializerContext::WriteRawBytes); in RegisterExternalReferences()
|
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/src/Google.Protobuf.Test/ |
D | CodedOutputStreamTest.cs | 398 cos.WriteRawBytes(new byte[] {0}); in Dispose_DisposesUnderlyingStream() 412 cos.WriteRawBytes(new byte[] {0}); in Dispose_WithLeaveOpen()
|
D | CodedInputStreamTest.cs | 277 output.WriteRawBytes(new byte[32]); // Pad with a few random bytes. in ReadMaliciouslyLargeBlob() 351 output.WriteRawBytes(new byte[] {0x80}); in ReadInvalidUtf8()
|
/third_party/protobuf/csharp/src/Google.Protobuf.Test/ |
D | CodedInputStreamTest.cs | 376 output.WriteRawBytes(new byte[32]); // Pad with a few random bytes. in ReadMaliciouslyLargeBlob() 394 output.WriteRawBytes(new byte[4]); // Pad with a few random bytes. in ReadBlobGreaterThanCurrentLimit() 426 output.WriteRawBytes(new byte[4]); // Pad with a few random bytes. in ReadStringGreaterThanCurrentLimit() 588 output.WriteRawBytes(new byte[] {0x80}); in ReadInvalidUtf8()
|
D | CodedOutputStreamTest.cs | 492 cos.WriteRawBytes(new byte[] {0}); in Dispose_DisposesUnderlyingStream() 506 cos.WriteRawBytes(new byte[] {0}); in Dispose_WithLeaveOpen()
|
/third_party/node/deps/v8/include/ |
D | v8-value-serializer.h | 157 void WriteRawBytes(const void* source, size_t length);
|
/third_party/node/deps/v8/src/objects/ |
D | value-serializer.cc | 290 WriteRawBytes(&raw_tag, sizeof(raw_tag)); in WriteTag() 309 WriteRawBytes(stack_buffer, next_byte - stack_buffer); in WriteVarint() 330 WriteRawBytes(&value, sizeof(value)); in WriteDouble() 335 WriteRawBytes(chars.begin(), chars.length() * sizeof(uint8_t)); in WriteOneByteString() 341 WriteRawBytes(chars.begin(), chars.length() * sizeof(base::uc16)); in WriteTwoByteString() 354 void ValueSerializer::WriteRawBytes(const void* source, size_t length) { in WriteRawBytes() function in v8::internal::ValueSerializer 940 WriteRawBytes(array_buffer->backing_store(), byte_length); in WriteJSArrayBuffer()
|
D | value-serializer.h | 85 void WriteRawBytes(const void* source, size_t length);
|
/third_party/node/deps/v8/src/web-snapshot/ |
D | web-snapshot.cc | 392 total_serializer.WriteRawBytes(kMagicNumber, 4); in WriteSnapshot() 420 destination.WriteRawBytes(source.buffer_, source.buffer_size_); in WriteObjects() 447 serializer.WriteRawBytes(chars.begin(), chars.length() * sizeof(uint8_t)); in SerializeString() 455 serializer.WriteRawBytes(buffer.get(), length * sizeof(uint8_t)); in SerializeString()
|
/third_party/node/deps/v8/src/api/ |
D | api.cc | 3403 void ValueSerializer::WriteRawBytes(const void* source, size_t length) { in WriteRawBytes() function in v8::ValueSerializer 3404 private_->serializer.WriteRawBytes(source, length); in WriteRawBytes()
|
/third_party/chromium/patch/ |
D | 0003-ohos-1115.patch | 260676 WriteRawBytes(array_buffer->backing_store(), byte_length);
|