/external/bcc/src/cc/frontends/b/ |
D | printer.cc | 25 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 …]
|
D | printer.h | 28 explicit Printer(FILE* out) : out_(out), indent_(0) {} in Printer() 37 FILE* out_;
|
/external/chromium-trace/catapult/systrace/atrace_helper/jni/ |
D | atrace_process_dump.cc | 39 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/ |
D | xml_writer.cc | 39 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/ |
D | bin_to_dot.cpp | 35 : 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/ |
D | bin_to_dot.cpp | 35 : 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/ |
D | log.h | 24 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/ |
D | log.h | 24 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/ |
D | tensor_coding.cc | 77 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/ |
D | dump_ir_pass.cc | 50 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/ |
D | disassemble.cpp | 56 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/ |
D | disassemble.cpp | 56 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/ |
D | rcar-mstp.h | 13 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/ |
D | io.h | 84 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/ |
D | ipc_message_templates_impl.h | 15 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/ |
D | interface_macros.tmpl | 40 {{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}}_);
|
D | interface_definition.tmpl | 65 , {{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/ |
D | tensor_bundle.cc | 396 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/ |
D | cxx11_tensor_device.cu | 27 …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/ |
D | io.h | 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/u-boot/arch/arc/include/asm/ |
D | io.h | 252 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/ |
D | system_delay_unittest.cc | 51 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/ |
D | io.h | 219 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/ |
D | io.h | 103 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/ |
D | io.h | 206 out_##type((addr), in_##type(addr) & ~(clear)) 209 out_##type((addr), in_##type(addr) | (set)) 212 out_##type((addr), (in_##type(addr) & ~(clear)) | (set))
|