Home
last modified time | relevance | path

Searched refs:WriteRawBytes (Results 1 – 9 of 9) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/
DCodedOutputStream.cs196 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
DByteString.cs326 outputStream.WriteRawBytes(bytes, 0, bytes.Length); in WriteRawBytesTo()
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_tensor_coding.cc194 e.WriteRawBytes(header); in EncodeTensorToByteBuffer()
200 e.WriteRawBytes(StringPiece(e_skeleton.data(), e_skeleton.size())); in EncodeTensorToByteBuffer()
/external/tensorflow/tensorflow/core/lib/io/
Dproto_encode_helper.h60 void WriteRawBytes(StringPiece v) { EncodeBytes(v.data(), v.size()); } in WriteRawBytes() function
/external/v8/src/
Dvalue-serializer.cc216 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()
Dvalue-serializer.h89 void WriteRawBytes(const void* source, size_t length);
Dapi.cc3182 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/
DCodedInputStreamTest.cs277 output.WriteRawBytes(new byte[32]); // Pad with a few random bytes. in ReadMaliciouslyLargeBlob()
351 output.WriteRawBytes(new byte[] {0x80}); in ReadInvalidUtf8()
/external/v8/include/
Dv8.h2111 void WriteRawBytes(const void* source, size_t length);