/external/v8/src/ |
D | optimized-compilation-info.cc | 47 Vector<const char> debug_name, Zone* zone, Code::Kind code_kind) in OptimizedCompilationInfo() argument 49 debug_name, static_cast<AbstractCode::Kind>(code_kind), zone) { in OptimizedCompilationInfo() 61 PassesFilter(debug_name, CStrVector(FLAG_trace_turbo_filter))); in OptimizedCompilationInfo() 70 Vector<const char> debug_name, AbstractCode::Kind code_kind, Zone* zone) in OptimizedCompilationInfo() argument 80 debug_name_(debug_name) {} in OptimizedCompilationInfo()
|
D | optimized-compilation-info.h | 67 OptimizedCompilationInfo(Vector<const char> debug_name, Zone* zone, 284 OptimizedCompilationInfo(Vector<const char> debug_name,
|
/external/webrtc/talk/media/sctp/ |
D | sctpdataengine.h | 182 void set_debug_name(const std::string& debug_name) { in set_debug_name() argument 183 debug_name_ = debug_name; in set_debug_name() 185 const std::string& debug_name() const { return debug_name_; } in debug_name() function
|
/external/tensorflow/tensorflow/python/ops/ |
D | parsing_ops.py | 1273 debug_name=None, argument 1372 debug_name = [] if debug_name is None else debug_name 1456 debug_name=debug_name, 1621 debug_name=None, argument 1706 debug_name = "" if debug_name is None else debug_name 1788 debug_name=debug_name,
|
/external/tensorflow/tensorflow/core/kernels/ |
D | example_parsing_ops.cc | 274 const Tensor* debug_name; in Compute() local 278 OP_REQUIRES_OK(ctx, ctx->input("debug_name", &debug_name)); in Compute() 283 bool has_debug_name = (debug_name->NumElements() > 0); in Compute() 285 OP_REQUIRES(ctx, TensorShapeUtils::IsVector(debug_name->shape()), in Compute() 288 debug_name->shape().DebugString())); in Compute() 356 auto debug_name_t = debug_name->flat<string>(); in Compute() 434 const Tensor* debug_name; in Compute() local 443 OP_REQUIRES_OK(ctx, ctx->input("debug_name", &debug_name)); in Compute() 523 bool has_debug_name = (debug_name->NumElements() > 0); in Compute() 525 OP_REQUIRES(ctx, TensorShapeUtils::IsScalar(debug_name->shape()), in Compute() [all …]
|
/external/v8/src/compiler/ |
D | linkage.h | 202 const char* debug_name = "", in NON_EXPORTED_BASE() 216 debug_name_(debug_name) {} in NON_EXPORTED_BASE() 300 const char* debug_name() const { return debug_name_; } in NON_EXPORTED_BASE() 387 const char* debug_name, Operator::Properties properties, in NON_EXPORTED_BASE()
|
D | linkage.cc | 50 return os << d.kind() << ":" << d.debug_name() << ":r" << d.ReturnCount() in operator <<() 218 const char* debug_name = function->name; in GetRuntimeCallDescriptor() local 226 debug_name, properties, flags); in GetRuntimeCallDescriptor() 231 const char* debug_name, Operator::Properties properties, in GetCEntryStubCallDescriptor() argument 284 debug_name); // debug name in GetCEntryStubCallDescriptor()
|
D | common-operator.h | 171 ParameterInfo(int index, const char* debug_name) in ParameterInfo() argument 172 : index_(index), debug_name_(debug_name) {} in ParameterInfo() 175 const char* debug_name() const { return debug_name_; } in debug_name() function 475 const Operator* Parameter(int index, const char* debug_name = nullptr); in NON_EXPORTED_BASE()
|
D | pipeline.h | 61 Schedule* schedule, Code::Kind kind, const char* debug_name,
|
D | pipeline.cc | 381 sequence(), debug_name()); in InitializeRegisterAllocationData() 416 const char* debug_name() const { return debug_name_.get(); } in debug_name() function in v8::internal::compiler::PipelineData 620 std::unique_ptr<char[]> debug_name = info->GetDebugName(); in PrintCode() local 655 code->Disassemble(debug_name.get(), os); in PrintCode() 2145 Schedule* schedule, Code::Kind kind, const char* debug_name, in GenerateCodeForCodeStub() argument 2148 OptimizedCompilationInfo info(CStrVector(debug_name), graph->zone(), kind); in GenerateCodeForCodeStub() 2177 << "Begin compiling " << debug_name << " using Turbofan" << std::endl; in GenerateCodeForCodeStub() 2337 !strcmp(FLAG_turbo_verify_machine_graph, data->debug_name())))) { in SelectInstructions() 2343 << "--- Verifying " << data->debug_name() << " generated by TurboFan\n" in SelectInstructions() 2347 << "--- End of " << data->debug_name() << " generated by TurboFan\n" in SelectInstructions() [all …]
|
D | common-operator.cc | 210 if (i.debug_name()) os << i.debug_name() << '#'; in operator <<() 1093 const char* debug_name) { in Parameter() argument 1094 if (!debug_name) { in Parameter() 1110 ParameterInfo(index, debug_name)); // parameter info in Parameter()
|
D | graph-visualizer.cc | 171 std::unique_ptr<char[]> debug_name = info->GetDebugName(); in GetVisualizerLogFileName() local 173 if (strlen(debug_name.get()) > 0) { in GetVisualizerLogFileName() 174 SNPrintF(filename, "turbo-%s-%i", debug_name.get(), optimization_id); in GetVisualizerLogFileName()
|
D | register-allocator.h | 757 const char* debug_name = nullptr); 799 const char* debug_name() const { return debug_name_; } in debug_name() function
|
D | wasm-compiler.cc | 5010 char debug_name[kMaxNameLen] = "c-wasm-entry:"; in CompileCWasmEntry() local 5011 size_t name_len = strlen(debug_name); in CompileCWasmEntry() 5013 if (name_len + 1 < kMaxNameLen) debug_name[name_len++] = c; in CompileCWasmEntry() 5022 debug_name[name_len] = '\0'; in CompileCWasmEntry() 5023 Vector<const char> debug_name_vec(debug_name, name_len); in CompileCWasmEntry() 5041 code->Disassemble(debug_name, os); in CompileCWasmEntry() 5390 call_descriptor->debug_name(), // debug name in ReplaceTypeInCallDescriptorWith()
|
D | register-allocator.cc | 1354 InstructionSequence* code, const char* debug_name) in RegisterAllocationData() argument 1358 debug_name_(debug_name), in RegisterAllocationData() 1481 if (debug_name() == nullptr) { in ExistsUseWithoutDefinition() 1484 PrintF(" (function: %s)\n", debug_name()); in ExistsUseWithoutDefinition()
|
/external/kernel-headers/original/uapi/linux/ |
D | virtio_gpu.h | 243 char debug_name[64]; member
|
/external/v8/src/debug/ |
D | debug-scopes.cc | 50 Handle<String> debug_name(closure_info->FunctionDebugName(), isolate_); in GetFunctionDebugName() local 51 if (debug_name->length() > 0) return debug_name; in GetFunctionDebugName()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_ParseSingleSequenceExample.pbtxt | 64 name: "debug_name"
|
D | api_def_ParseSequenceExample.pbtxt | 10 name: "debug_name"
|
/external/virglrenderer/src/ |
D | vrend_decode.c | 1227 const char *debug_name) in vrend_renderer_context_create_internal() argument 1242 dctx->grctx = vrend_create_context(handle, nlen, debug_name); in vrend_renderer_context_create_internal() 1253 int vrend_renderer_context_create(uint32_t handle, uint32_t nlen, const char *debug_name) in vrend_renderer_context_create() argument 1262 vrend_renderer_context_create_internal(handle, nlen, debug_name); in vrend_renderer_context_create()
|
D | vrend_renderer.c | 540 char debug_name[64]; member 640 …s: context error reported %d \"%s\" %s %d\n", fname, ctx->ctx_id, ctx->debug_name, vrend_ctx_error… in __report_context_error() 660 …rofile violation reported %d \"%s\" %s %d\n", fname, ctx->ctx_id, ctx->debug_name, vrend_core_prof… in __report_core_warn() 693 const char *name = ctx ? ctx->debug_name : "NO_CONTEXT"; in __report_gles_warn() 701 const char *name = ctx ? ctx->debug_name : "NO_CONTEXT"; in __report_gles_missing_func() 2104 fprintf(stderr,"failed to complete framebuffer 0x%x %s\n", status, ctx->debug_name); in vrend_set_framebuffer_state() 3384 …fprintf(stderr,"%s: cannot find loc %d %d %d\n", ctx->debug_name, i, va->count, ctx->sub->prog->ss… in vrend_draw_bind_vertex_legacy() 3387 … fprintf(stderr,"%s: shader probably didn't compile - skipping rendering\n", ctx->debug_name); in vrend_draw_bind_vertex_legacy() 3769 fprintf(stderr,"dropping rendering due to missing shaders: %s\n", ctx->debug_name); in vrend_draw_vbo() 3787 fprintf(stderr, "failure to compile shader variants: %s\n", ctx->debug_name); in vrend_draw_vbo() [all …]
|
D | vrend_renderer.h | 140 struct vrend_context *vrend_create_context(int id, uint32_t nlen, const char *debug_name);
|
/external/v8/src/interpreter/ |
D | interpreter-generator.cc | 3201 std::string debug_name = std::string("DeserializeLazy"); in GenerateDeserializeLazyHandler() local 3205 debug_name = debug_name.append(Bytecodes::ToString(prefix_bytecode)); in GenerateDeserializeLazyHandler() 3210 debug_name.c_str(), in GenerateDeserializeLazyHandler() 3220 AbstractCode::cast(*code), debug_name.c_str())); in GenerateDeserializeLazyHandler() 3225 code->Disassemble(debug_name.c_str(), os); in GenerateDeserializeLazyHandler()
|
/external/perfetto/protos/perfetto/trace/track_event/ |
D | track_event.proto | 73 // TODO(eseckler): May also want a debug_name for untyped debug-only events.
|
/external/v8/src/ast/ |
D | ast.cc | 979 const char* CallRuntime::debug_name() { in debug_name() function in v8::internal::CallRuntime
|