Home
last modified time | relevance | path

Searched refs:out_ (Results 1 – 25 of 41) sorted by relevance

12

/external/bcc/src/cc/frontends/b/
Dprinter.cc25 fprintf(out_, "%*s", indent_, ""); in print_indent()
29 fprintf(out_, "{\n"); in visit_block_stmt_node()
36 fprintf(out_, "\n"); in visit_block_stmt_node()
40 fprintf(out_, "%*s}", indent_, ""); in visit_block_stmt_node()
45 fprintf(out_, "if "); in visit_if_stmt_node()
47 fprintf(out_, " "); in visit_if_stmt_node()
50 fprintf(out_, " else "); in visit_if_stmt_node()
57 fprintf(out_, "if "); in visit_onvalid_stmt_node()
59 fprintf(out_, " "); in visit_onvalid_stmt_node()
62 fprintf(out_, " else "); in visit_onvalid_stmt_node()
[all …]
Dprinter.h28 explicit Printer(FILE* out) : out_(out), indent_(0) {} in Printer()
37 FILE* out_;
/external/chromium-trace/catapult/systrace/atrace_helper/jni/
Datrace_process_dump.cc39 out_ = stream; in RunAndPrintJson()
41 fprintf(out_, "{\"start_ts\": \"%" PRIu64 "\", \"snapshots\":[\n", in RunAndPrintJson()
55 fprintf(out_, ",\n"); in RunAndPrintJson()
59 fprintf(out_, ",\n"); in RunAndPrintJson()
63 fflush(out_); in RunAndPrintJson()
66 fprintf(out_, "],\n"); in RunAndPrintJson()
68 fprintf(out_, "}\n"); in RunAndPrintJson()
69 fflush(out_); in RunAndPrintJson()
136 fprintf(out_, "{\"ts\":\"%" PRIu64 "\",\"memdump\":{\n", in SerializeSnapshot()
141 fprintf(out_, "\"%d\":{", process->pid); in SerializeSnapshot()
[all …]
/external/libprotobuf-mutator/examples/xml/
Dxml_writer.cc39 std::ostringstream out_; member in protobuf_mutator::xml::__anonde8cc9d90111::XmlWriter
46 out_ << " " << name << "=" << quote << value << quote; in ToXml()
51 out_ << "<?" << misk.pi().target() << misk.pi().data() << "?>"; in ToXml()
55 out_ << "<!--" << misk.comment() << "-->"; in ToXml()
60 out_ << "<!DOCTYPE " << doctype.name(); in ToXml()
61 if (doctype.has_external_id()) out_ << " " << doctype.external_id(); in ToXml()
62 if (doctype.has_int_subset()) out_ << " [" << doctype.int_subset() << "]"; in ToXml()
64 out_ << ">"; in ToXml()
68 if (content.has_char_data()) out_ << content.char_data(); in ToXml()
71 out_ << (content.reference().entry() ? '&' : '%') in ToXml()
[all …]
/external/deqp-deps/SPIRV-Tools/tools/cfg/
Dbin_to_dot.cpp35 : name_mapper_(std::move(name_mapper)), out_(*out) {} in DotConverter()
39 out_ << "digraph {\n"; in Begin()
41 out_ << "legend_merge_src [shape=plaintext, label=\"\"];\n" in Begin()
51 void End() const { out_ << "}\n"; } in End()
79 std::ostream& out_; member in __anonc4d3d83e0111::DotConverter
132 out_ << current_block_id_; in FlushBlock()
134 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " in FlushBlock()
137 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; in FlushBlock()
141 out_ << current_block_id_ << " -> " << successor << ";\n"; in FlushBlock()
145 out_ << current_block_id_ << " -> " << merge_ << " [" << kMergeStyle in FlushBlock()
[all …]
/external/swiftshader/third_party/SPIRV-Tools/tools/cfg/
Dbin_to_dot.cpp35 : name_mapper_(std::move(name_mapper)), out_(*out) {} in DotConverter()
39 out_ << "digraph {\n"; in Begin()
41 out_ << "legend_merge_src [shape=plaintext, label=\"\"];\n" in Begin()
51 void End() const { out_ << "}\n"; } in End()
79 std::ostream& out_; member in __anon6202d5780111::DotConverter
132 out_ << current_block_id_; in FlushBlock()
134 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\nFn " in FlushBlock()
137 out_ << " [label=\"" << name_mapper_(current_block_id_) << "\"];\n"; in FlushBlock()
141 out_ << current_block_id_ << " -> " << successor << ";\n"; in FlushBlock()
145 out_ << current_block_id_ << " -> " << merge_ << " [" << kMergeStyle in FlushBlock()
[all …]
/external/libcxx/utils/google-benchmark/src/
Dlog.h24 LogType(std::ostream* out) : out_(out) {} in LogType()
25 std::ostream* out_; variable
31 if (log.out_) {
32 *log.out_ << value;
38 if (log.out_) {
39 *log.out_ << m;
/external/google-benchmark/src/
Dlog.h24 LogType(std::ostream* out) : out_(out) {} in LogType()
25 std::ostream* out_; variable
31 if (log.out_) {
32 *log.out_ << value;
38 if (log.out_) {
39 *log.out_ << m;
/external/tensorflow/tensorflow/core/platform/
Dtensor_coding.cc77 explicit StringListEncoderImpl(string* out) : out_(out) {} in StringListEncoderImpl()
81 core::PutVarint32(out_, m.ByteSizeLong()); in Append()
88 core::PutVarint32(out_, s.length()); in Append()
92 void Finalize() override { strings::StrAppend(out_, rest_); } in Finalize()
95 string* out_; member in tensorflow::port::StringListEncoderImpl
186 explicit CordStringListEncoderImpl(Cord* out) : out_(out) {} in CordStringListEncoderImpl()
190 ::strings::CordAppendVarint(m.ByteSizeLong(), out_); in Append()
195 ::strings::CordAppendVarint(s.length(), out_); in Append()
199 void Finalize() override { out_->Append(rest_); } in Finalize()
202 Cord* out_; member in tensorflow::port::CordStringListEncoderImpl
/external/tensorflow/tensorflow/compiler/xla/service/gpu/llvm_gpu_backend/
Ddump_ir_pass.cc50 out_.reset(new llvm::raw_fd_ostream(llvm::StringRef(output_filename_), ec_, in doInitialization()
60 Function.print(*out_); in runOnFunction()
69 out_->close(); in doFinalization()
77 std::unique_ptr<llvm::raw_fd_ostream> out_; member in xla::gpu::DumpIrPass
/external/deqp-deps/SPIRV-Tools/source/
Ddisassemble.cpp56 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler()
57 stream_(out_.get()), in Disassembler()
92 if (color_) out_.get() << spvtools::clr::reset{print_}; in ResetColor()
96 if (color_) out_.get() << spvtools::clr::grey{print_}; in SetGrey()
100 if (color_) out_.get() << spvtools::clr::blue{print_}; in SetBlue()
104 if (color_) out_.get() << spvtools::clr::yellow{print_}; in SetYellow()
108 if (color_) out_.get() << spvtools::clr::red{print_}; in SetRed()
112 if (color_) out_.get() << spvtools::clr::green{print_}; in SetGreen()
121 out_stream out_; // The Output stream. Either to text_ or standard output. member in __anone1d590aa0111::Disassembler
/external/swiftshader/third_party/SPIRV-Tools/source/
Ddisassemble.cpp56 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler()
57 stream_(out_.get()), in Disassembler()
92 if (color_) out_.get() << spvtools::clr::reset{print_}; in ResetColor()
96 if (color_) out_.get() << spvtools::clr::grey{print_}; in SetGrey()
100 if (color_) out_.get() << spvtools::clr::blue{print_}; in SetBlue()
104 if (color_) out_.get() << spvtools::clr::yellow{print_}; in SetYellow()
108 if (color_) out_.get() << spvtools::clr::red{print_}; in SetRed()
112 if (color_) out_.get() << spvtools::clr::green{print_}; in SetGreen()
121 out_stream out_; // The Output stream. Either to text_ or standard output. member in __anon56cff7640111::Disassembler
/external/u-boot/arch/arm/mach-rmobile/include/mach/
Drcar-mstp.h13 out_##type((saddr), in_##type(addr) | (set))
15 out_##type((saddr), in_##type(addr) & ~(clear))
17 out_##type((addr), (in_##type(addr) | (set)) & ~(clear))
/external/u-boot/arch/sandbox/include/asm/
Dio.h84 out_##type((addr), in_##type(addr) & ~(clear))
87 out_##type((addr), in_##type(addr) | (set))
90 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
140 out_##type((addr), in_##type(addr) & ~(clear))
143 out_##type((addr), in_##type(addr) | (set))
146 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/libchrome/ipc/
Dipc_message_templates_impl.h15 explicit ParamDeserializer(const std::tuple<Ts&...>& out) : out_(out) {} in ParamDeserializer()
19 return ReadParam(&msg, &iter, &out_); in SerializeOutputParameters()
22 std::tuple<Ts&...> out_; variable
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dinterface_macros.tmpl40 {{param.kind|cpp_wrapper_call_type}}* out_{{prefix}}{{param.name}}
168 {{param.kind|cpp_wrapper_call_type}}* out_{{param.name}}
173 out_{{param.name}}->Bind(std::move(param_{{param.name}}_));
175 *out_{{param.name}} = std::move(param_{{param.name}}_);
Dinterface_definition.tmpl65 , {{param.kind|cpp_wrapper_call_type}}* out_{{param.name}}
69 , out_{{param.name}}_(out_{{param.name}})
77 {{param.kind|cpp_wrapper_call_type}}* out_{{param.name}}_;
372 out_{{param.name}}_
392 *out_{{param.name}}_ = std::move(p_{{param.name}});
641 {{param.kind|cpp_wrapper_call_type}}* out_{{param.name}}
647 *out_{{param.name}} = std::move({{param.name}});
653 out_{{param.name}}
/external/tensorflow/tensorflow/core/util/tensor_bundle/
Dtensor_bundle.cc396 out_(nullptr), in BundleWriter()
406 out_ = std::unique_ptr<FileOutputBuffer>( in BundleWriter()
430 out_->clear_crc32c(); in Add()
432 status_ = WriteStringTensor(val, out_.get(), &data_bytes_written, &crc32c); in Add()
434 status_ = WriteVariantTensor(val, out_.get(), &data_bytes_written, &crc32c); in Add()
436 status_ = WriteTensor(val, out_.get(), &data_bytes_written); in Add()
437 crc32c = out_->crc32c(); in Add()
444 status_ = PadAlignment(out_.get(), options_.data_alignment, &size_); in Add()
493 if (out_) { in Finish()
494 status_.Update(out_->Close()); in Finish()
[all …]
/external/eigen/unsupported/test/
Dcxx11_tensor_device.cu27 …sor<float, 3>& in2, Eigen::Tensor<float, 3>& out) : in1_(in1), in2_(in2), out_(out), kernel_1d_(2)… in CPUContext()
50 Eigen::Tensor<float, 3>& out() { return out_; } in out()
58 Eigen::Tensor<float, 3>& out_; member
70 … Eigen::TensorMap<Eigen::Tensor<float, 3> >& out) : in1_(in1), in2_(in2), out_(out), gpu_device_(&… in GPUContext()
93 Eigen::TensorMap<Eigen::Tensor<float, 3> >& out() { return out_; } in out()
101 Eigen::TensorMap<Eigen::Tensor<float, 3> >& out_; member
/external/u-boot/arch/nios2/include/asm/
Dio.h140 out_##type((addr), in_##type(addr) & ~(clear))
143 out_##type((addr), in_##type(addr) | (set))
146 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/arc/include/asm/
Dio.h252 out_##type((addr), in_##type(addr) & ~(clear))
255 out_##type((addr), in_##type(addr) | (set))
258 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/webrtc/webrtc/modules/audio_processing/aec/
Dsystem_delay_unittest.cc51 float out_[kSamplesPerChunk]; member in __anonecfbf5690111::SystemDelayTest
63 memset(out_, 0, sizeof(out_)); in SystemDelayTest()
65 out_ptr_ = out_; in SystemDelayTest()
/external/u-boot/arch/m68k/include/asm/
Dio.h219 out_##type((addr), in_##type(addr) & ~(clear))
222 out_##type((addr), in_##type(addr) | (set))
225 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/x86/include/asm/
Dio.h103 out_##type((addr), in_##type(addr) & ~(clear))
106 out_##type((addr), in_##type(addr) | (set))
109 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
/external/u-boot/arch/sh/include/asm/
Dio.h206 out_##type((addr), in_##type(addr) & ~(clear))
209 out_##type((addr), in_##type(addr) | (set))
212 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))

12