HomeSort by relevance Sort by last modified time
    Searched refs:output_stream_ (Results 1 - 13 of 13) sorted by null

  /external/tensorflow/tensorflow/lite/tools/accuracy/
csv_writer.h 38 : num_columns_(columns.size()), output_stream_(output_stream) {
39 TF_CHECK_OK(WriteRow(columns, output_stream_));
48 return WriteRow(values, output_stream_);
51 void Flush() { output_stream_->flush(); }
53 ~CSVWriter() { output_stream_->flush(); }
75 std::ofstream* output_stream_; member in class:tensorflow::metrics::CSVWriter
  /art/compiler/linker/
output_stream_test.cc 32 off_t actual = output_stream_->Seek(0, kSeekCurrent);
37 output_stream_ = &output_stream;
41 EXPECT_EQ(3, output_stream_->Seek(3, kSeekCurrent));
43 EXPECT_EQ(2, output_stream_->Seek(2, kSeekSet));
46 EXPECT_TRUE(output_stream_->WriteFully(buf, 2));
48 EXPECT_EQ(6, output_stream_->Seek(2, kSeekEnd));
50 EXPECT_TRUE(output_stream_->WriteFully(buf, 4));
52 EXPECT_TRUE(output_stream_->WriteFully(buf, 6));
53 EXPECT_TRUE(output_stream_->Flush());
64 OutputStream* output_stream_; member in class:art::linker::OutputStreamTest
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
logging_ops.cc 150 OP_REQUIRES_OK(ctx, ctx->GetAttr("output_stream", &output_stream_));
157 std::end(valid_output_streams_), output_stream_);
161 "Unknown output stream: ", output_stream_, ", Valid streams are:");
184 } else if (output_stream_ == "stdout") {
186 } else if (output_stream_ == "stderr") {
188 } else if (output_stream_ == "log(info)") {
190 } else if (output_stream_ == "log(warning)") {
192 } else if (output_stream_ == "log(error)") {
196 "Unknown output stream: ", output_stream_, ", Valid streams are:");
209 // Either output_stream_ or file_path_ (but not both) will be non-empty
210 string output_stream_; member in class:tensorflow::PrintV2Op
    [all...]
  /external/v8/src/arm64/
instrument-arm64.cc 98 : output_stream_(stderr), sample_period_(sample_period) {
102 output_stream_ = fopen(datafile, "w");
103 if (output_stream_ == nullptr) {
105 output_stream_ = stderr;
112 fprintf(output_stream_, "# counters=%d\n", num_counters);
113 fprintf(output_stream_, "# sample_period=%" PRIu64 "\n", sample_period_);
135 if (output_stream_ != stderr) {
136 fclose(output_stream_);
159 fprintf(output_stream_, "%" PRIu64 ",", (*it)->count());
161 fprintf(output_stream_, "\n")
    [all...]
instrument-arm64.h 80 FILE *output_stream_; member in class:v8::internal::Instrument
  /external/vixl/src/aarch64/
instrument-aarch64.cc 113 : output_stream_(stdout), sample_period_(sample_period) {
117 output_stream_ = fopen(datafile, "w");
118 if (output_stream_ == NULL) {
120 output_stream_ = stdout;
128 fprintf(output_stream_, "# counters=%d\n", num_counters);
129 fprintf(output_stream_, "# sample_period=%" PRIu64 "\n", sample_period_);
151 if (output_stream_ != stdout) {
152 fclose(output_stream_);
176 fprintf(output_stream_, "%" PRIu64 ",", (*it)->GetCount());
178 fprintf(output_stream_, "\n")
    [all...]
instrument-aarch64.h 106 FILE* output_stream_; member in class:vixl::aarch64::Instrument
  /external/google-benchmark/src/
reporter.cc 30 : output_stream_(&std::cout), error_stream_(&std::cerr) {}
  /external/libcxx/utils/google-benchmark/src/
reporter.cc 30 : output_stream_(&std::cout), error_stream_(&std::cerr) {}
  /external/grpc-grpc/src/compiler/
protobuf_plugin.h 136 : output_stream_(str), printer_(&output_stream_, '$') {}
149 grpc::protobuf::io::StringOutputStream output_stream_; member in class:ProtoBufPrinter
  /art/dex2oat/linker/
elf_writer_quick.cc 129 std::unique_ptr<BufferedOutputStream> output_stream_; member in class:art::linker::final
158 output_stream_(
161 output_stream_.get())) {}
  /external/google-benchmark/include/benchmark/
benchmark.h 1441 std::ostream* output_stream_; member in class:benchmark::BenchmarkReporter
    [all...]
  /external/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h 1441 std::ostream* output_stream_; member in class:benchmark::BenchmarkReporter
    [all...]

Completed in 1186 milliseconds