Home
last modified time | relevance | path

Searched refs:TStringOutputStream (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/tensorflow/tensorflow/core/platform/
H A Dprotobuf.h104 class TStringOutputStream : public protobuf::io::ZeroCopyOutputStream {
106 explicit TStringOutputStream(tstring* target);
107 ~TStringOutputStream() override = default;
109 TStringOutputStream(const TStringOutputStream&) = delete;
110 void operator=(const TStringOutputStream&) = delete;
H A Dprotobuf.cc23 TStringOutputStream::TStringOutputStream(tstring* target) : target_(target) {} in TStringOutputStream() function in tensorflow::TStringOutputStream
25 bool TStringOutputStream::Next(void** data, int* size) { in Next()
52 void TStringOutputStream::BackUp(int count) { in BackUp()
56 int64_t TStringOutputStream::ByteCount() const { return target_->size(); } in ByteCount()
/aosp_15_r20/external/tensorflow/tensorflow/core/kernels/
H A Dencode_proto_op.cc613 TStringOutputStream output_string(&bufs(message_index)); in Compute()
H A Dexample_parsing_ops.cc1216 TStringOutputStream out(&binary_examples->flat<tstring>()(i)); in Compute()