Home
last modified time | relevance | path

Searched refs:ReadRaw (Results 1 – 7 of 7) sorted by relevance

/external/protobuf/src/google/protobuf/io/
Dcoded_stream.cc259 bool CodedInputStream::ReadRaw(void* buffer, int size) { in ReadRaw() function in google::protobuf::io::CodedInputStream
312 if (!ReadRaw(bytes, sizeof(*value))) return false; in ReadLittleEndian32Fallback()
329 if (!ReadRaw(bytes, sizeof(*value))) return false; in ReadLittleEndian64Fallback()
Dzero_copy_stream_unittest.cc328 EXPECT_TRUE(coded_input->ReadRaw(temp_buffer, insize)); in TEST_F()
333 EXPECT_TRUE(coded_input->ReadRaw(temp_buffer, insize)); in TEST_F()
641 EXPECT_TRUE(coded_input->ReadRaw(temp_buffer, insize)); in TEST_F()
647 EXPECT_TRUE(coded_input->ReadRaw(temp_buffer, insize)); in TEST_F()
Dcoded_stream_unittest.cc264 coded_input.ReadRaw(&dummy, 1); in TEST_1D()
617 TEST_1D(CodedStreamTest, ReadRaw, kBlockSizes) { in TEST_1D() argument
625 EXPECT_TRUE(coded_input.ReadRaw(read_buffer, sizeof(kRawBytes))); in TEST_1D()
Dcoded_stream.h199 bool ReadRaw(void* buffer, int size);
/external/tensorflow/tensorflow/core/distributed_runtime/
Dtensor_coding.cc205 if (!input->ReadRaw(const_cast<char*>(buf.data()), num_bytes)) in ParseTensorSubmessage()
/external/protobuf/src/google/protobuf/
Dwire_format_lite_inl.h378 if (!input->ReadRaw(dest, new_bytes)) { in ReadPackedFixedSizePrimitive()
/external/tensorflow/tensorflow/core/util/
Dexample_proto_fast_parsing.cc182 if (!stream.ReadRaw(float_list->data() + initial_size, bytes_to_copy)) in ParseFloatList()