Searched refs:WriteRawBytes (Results 1 – 9 of 9) sorted by relevance
/external/protobuf/csharp/src/Google.Protobuf/ |
D | CodedOutputStream.cs | 196 WriteRawBytes(rawBytes, 0, 4); in WriteFloat() 291 WriteRawBytes(bytes); in WriteString() 590 internal void WriteRawBytes(byte[] value) in WriteRawBytes() method in Google.Protobuf.CodedOutputStream 592 WriteRawBytes(value, 0, value.Length); in WriteRawBytes() 598 internal void WriteRawBytes(byte[] value, int offset, int length) in WriteRawBytes() method in Google.Protobuf.CodedOutputStream
|
D | ByteString.cs | 326 outputStream.WriteRawBytes(bytes, 0, bytes.Length); in WriteRawBytesTo()
|
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
D | grpc_tensor_coding.cc | 194 e.WriteRawBytes(header); in EncodeTensorToByteBuffer() 200 e.WriteRawBytes(StringPiece(e_skeleton.data(), e_skeleton.size())); in EncodeTensorToByteBuffer()
|
/external/tensorflow/tensorflow/core/lib/io/ |
D | proto_encode_helper.h | 60 void WriteRawBytes(StringPiece v) { EncodeBytes(v.data(), v.size()); } in WriteRawBytes() function
|
/external/v8/src/ |
D | value-serializer.cc | 216 WriteRawBytes(&raw_tag, sizeof(raw_tag)); in WriteTag() 235 WriteRawBytes(stack_buffer, next_byte - stack_buffer); in WriteVarint() 253 WriteRawBytes(&value, sizeof(value)); in WriteDouble() 258 WriteRawBytes(chars.begin(), chars.length() * sizeof(uint8_t)); in WriteOneByteString() 264 WriteRawBytes(chars.begin(), chars.length() * sizeof(uc16)); in WriteTwoByteString() 277 void ValueSerializer::WriteRawBytes(const void* source, size_t length) { in WriteRawBytes() function in v8::internal::ValueSerializer 846 WriteRawBytes(array_buffer->backing_store(), byte_length); in WriteJSArrayBuffer() 893 WriteRawBytes(&encoding_tag, sizeof(encoding_tag)); in WriteWasmModule()
|
D | value-serializer.h | 89 void WriteRawBytes(const void* source, size_t length);
|
D | api.cc | 3182 void ValueSerializer::WriteRawBytes(const void* source, size_t length) { in WriteRawBytes() function in v8::ValueSerializer 3183 private_->serializer.WriteRawBytes(source, length); in WriteRawBytes()
|
/external/protobuf/csharp/src/Google.Protobuf.Test/ |
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()
|
/external/v8/include/ |
D | v8.h | 2111 void WriteRawBytes(const void* source, size_t length);
|