/external/tpm2-tss/script/ |
D | gen_fuzz.py | 119 function_name = function.split('\n')[0]\ 131 if '_Complete' in function_name: 132 return gen_complete(function, function_name, args) 133 if '_Prepare' in function_name: 134 return gen_prepare(function, function_name, args) 135 raise NotImplementedError('Unknown function type %r' % (function_name,)) 137 def gen_complete(function, function_name, args): argument 143 return function_name, SAPI_COMPLETE_TEMPLATE_NO_ARGS % (function_name) 153 return function_name, SAPI_COMPLETE_TEMPLATE_HAS_ARGS % (arg_definitions, 154 function_name, [all …]
|
/external/perfetto/src/trace_processor/sqlite/ |
D | create_function_internal.cc | 79 base::StringView function_name = raw.substr(0, function_name_end); in ParseFunctionName() local 80 if (!IsValidName(function_name)) { in ParseFunctionName() 82 function_name.ToStdString().c_str()); in ParseFunctionName() 84 out = function_name; in ParseFunctionName() 121 base::StringView function_name; in ParsePrototype() local 122 RETURN_IF_ERROR(ParseFunctionName(raw, function_name)); in ParsePrototype() 124 size_t function_name_end = function_name.size(); in ParsePrototype() 133 out.function_name = function_name.ToStdString(); in ParsePrototype() 138 const std::string& function_name, in SqliteRetToStatus() argument 142 function_name.c_str(), sqlite3_errmsg(db)); in SqliteRetToStatus() [all …]
|
D | create_function_internal.h | 51 std::string function_name; member 55 return function_name == other.function_name && arguments == other.arguments; 61 base::StringView& function_name); 68 const std::string& function_name, 72 const std::string& function_name,
|
D | create_view_function.cc | 185 table_->prototype_.function_name.c_str())); in Filter() 194 table_->prototype_.function_name.c_str())); in Filter() 205 table_->prototype_.function_name.c_str())); in Filter() 222 table_->prototype_.function_name.c_str(), sqlite3_errmsg(table_->db_))); in Filter() 230 auto status = MaybeBindArgument(stmt_, table_->prototype_.function_name, in Filter() 244 table_->state_->erase(table_->prototype_.function_name); in Filter() 245 table_->state_->emplace(table_->prototype_.function_name, std::move(stmt)); in Filter() 256 table_->prototype_.function_name.c_str(), sqlite3_errmsg(table_->db_))); in Next() 323 base::StringView function_name; in Run() local 324 RETURN_IF_ERROR(ParseFunctionName(prototype_str, function_name)); in Run() [all …]
|
D | create_function.cc | 56 ctx->prototype.function_name.c_str(), ctx->prototype.arguments.size(), in Run() 67 ctx->prototype.function_name.c_str(), in Run() 74 RETURN_IF_ERROR(MaybeBindArgument(ctx->stmt, ctx->prototype.function_name, in Run() 80 SqliteRetToStatus(ctx->db, ctx->prototype.function_name, ret)); in Run() 91 ctx->prototype.function_name.c_str(), col_count); in Run() 101 SqliteRetToStatus(ctx->db, ctx->prototype.function_name, ret)); in Cleanup() 105 ctx->prototype.function_name.c_str()); in Cleanup() 113 ctx->prototype.function_name.c_str()); in Cleanup() 193 NameAndArgc key{prototype.function_name, created_argc}; in Run()
|
/external/autotest/client/cros/networking/chrome_testing/network_test_ext/ |
D | background.js | 23 Networking.prototype._setupFunctionCall = function(function_name) { argument 24 if (this.callStatus[function_name] == null) 25 this.callStatus[function_name] = {}; 26 if (this.callStatus[function_name].status == chromeTesting.STATUS_PENDING) 28 this.callStatus[function_name].status = chromeTesting.STATUS_PENDING; 32 Networking.prototype._setResult = function(function_name, result_value) { argument 35 this.callStatus[function_name].status = chromeTesting.STATUS_FAILURE; 36 this.callStatus[function_name].result = null; 37 this.callStatus[function_name].error = error.message; 39 this.callStatus[function_name].status = chromeTesting.STATUS_SUCCESS; [all …]
|
/external/perfetto/src/profiling/symbolizer/ |
D | breakpad_symbolizer_unittest.cc | 78 EXPECT_EQ(frames[0][0].function_name, "foo_foo()"); in TEST() 79 EXPECT_EQ(frames[1][0].function_name, "bar_bar_bar()"); in TEST() 80 EXPECT_EQ(frames[2][0].function_name, "foo::bar()"); in TEST() 81 EXPECT_EQ(frames[3][0].function_name, "baz()"); in TEST() 82 EXPECT_TRUE(frames[4][0].function_name.empty()); in TEST() 83 EXPECT_TRUE(frames[5][0].function_name.empty()); in TEST() 84 EXPECT_TRUE(frames[6][0].function_name.empty()); in TEST() 85 EXPECT_TRUE(frames[7][0].function_name.empty()); in TEST()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/data/ |
D | graph_test_utils.cc | 72 StringPiece function_name) { in MakeFilterNode() argument 75 {{"predicate", FunctionDefHelper::FunctionRef(string(function_name))}, in MakeFilterNode() 85 StringPiece function_name) { in MakeMapAndBatchNode() argument 90 {{"f", FunctionDefHelper::FunctionRef(string(function_name))}, in MakeMapAndBatchNode() 97 StringPiece function_name) { in MakeMapNode() argument 100 {{"f", FunctionDefHelper::FunctionRef(string(function_name))}, in MakeMapNode() 111 StringPiece function_name, bool sloppy) { in MakeParallelInterleaveV2Node() argument 117 {"f", FunctionDefHelper::FunctionRef(string(function_name))}, in MakeParallelInterleaveV2Node() 130 StringPiece function_name, in MakeParallelInterleaveV4Node() argument 137 {"f", FunctionDefHelper::FunctionRef(string(function_name))}, in MakeParallelInterleaveV4Node() [all …]
|
D | graph_test_utils.h | 46 StringPiece function_name = "IsZero"); 50 StringPiece function_name = "XTimesTwo"); 57 StringPiece function_name = "XTimesTwo"); 65 StringPiece function_name, bool sloppy); 73 StringPiece function_name, 79 StringPiece function_name, bool sloppy); 84 StringPiece function_name,
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | elemental_ir_emitter.cc | 39 string function_name; in EmitAtan2() local 48 function_name = "atan2f"; in EmitAtan2() 51 function_name = "atan2"; in EmitAtan2() 59 ->getOrInsertFunction(function_name, lhs->getType(), lhs->getType(), in EmitAtan2() 76 string function_name; in EmitTanh() local 83 function_name = "tanhf"; in EmitTanh() 86 function_name = "tanh"; in EmitTanh() 94 ->getOrInsertFunction(function_name, value->getType(), in EmitTanh()
|
/external/libchrome/base/ |
D | location.h | 34 Location(const char* function_name, 52 const char* function_name() const { return function_name_; } in function_name() function 72 static Location CreateFromHere(const char* function_name, 90 #define FROM_HERE_WITH_EXPLICIT_FUNCTION(function_name) \ argument 91 ::base::Location::CreateFromHere(function_name, __FILE__, __LINE__) 97 #define FROM_HERE_WITH_EXPLICIT_FUNCTION(function_name) \ argument 98 ::base::Location::CreateFromHere(function_name, __FILE__, -1)
|
D | location.cc | 24 Location::Location(const char* function_name, in Location() argument 28 : function_name_(function_name), in Location() 66 NOINLINE Location Location::CreateFromHere(const char* function_name, in CreateFromHere() argument 69 return Location(function_name, file_name, line_number, RETURN_ADDRESS()); in CreateFromHere()
|
/external/google-benchmark/test/ |
D | benchmark_name_gtest.cc | 16 name.function_name = "function_name"; in TEST() 22 name.function_name = "function_name"; in TEST() 29 name.function_name = "function_name"; in TEST() 37 name.function_name = "function_name"; in TEST() 45 name.function_name = "function_name"; in TEST() 53 name.function_name = "function_name"; in TEST() 61 name.function_name = "function_name"; in TEST()
|
/external/google-breakpad/src/processor/ |
D | microdump_processor_unittest.cc | 150 state.threads()->at(0)->frames()->at(0)->function_name); in TEST_F() 152 state.threads()->at(0)->frames()->at(3)->function_name); in TEST_F() 183 state.threads()->at(0)->frames()->at(0)->function_name); in TEST_F() 185 state.threads()->at(0)->frames()->at(1)->function_name); in TEST_F() 187 state.threads()->at(0)->frames()->at(6)->function_name); in TEST_F() 202 state.threads()->at(0)->frames()->at(0)->function_name); in TEST_F() 204 state.threads()->at(0)->frames()->at(2)->function_name); in TEST_F() 206 state.threads()->at(0)->frames()->at(7)->function_name); in TEST_F() 250 state.threads()->at(0)->frames()->at(0)->function_name); in TEST_F() 252 state.threads()->at(0)->frames()->at(1)->function_name); in TEST_F() [all …]
|
/external/webrtc/rtc_base/ |
D | location.h | 30 Location(const char* function_name, const char* file_name, int line_number) in Location() argument 31 : function_name_(function_name), in Location() 36 const char* function_name() const { return function_name_; } in function_name() function 54 #define RTC_FROM_HERE_WITH_FUNCTION(function_name) \ argument 55 ::rtc::Location(function_name, __FILE__, __LINE__)
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | resource_util.cc | 46 const Graph* graph, const absl::optional<std::string>& function_name, 85 const Node& n, const absl::optional<std::string>& function_name, in PropagateFromStackOrTensorArraySourceOp() argument 88 ResourceUsageAnalysis::NodeInfo src_node_info(function_name, n.name(), in PropagateFromStackOrTensorArraySourceOp() 100 const Node& n, const absl::optional<std::string>& function_name, in PropagateFromArgOp() argument 110 TF_RET_CHECK(function_name.has_value()) in PropagateFromArgOp() 115 const ResourceUsageAnalysis::NodeInfo src_node_info(function_name, n.name(), in PropagateFromArgOp() 184 const Node& n, const absl::optional<std::string>& function_name, in PropagateThroughCallOp() argument 194 "name is: ", function_name.value()); in PropagateThroughCallOp() 221 n, function_name, *fbody, called_function_source_to_path, user_to_source, in PropagateThroughCallOp() 254 const Graph* graph, const absl::optional<std::string>& function_name, in AnalyzeResourceUsage() argument [all …]
|
/external/rust/crates/criterion/src/ |
D | benchmark_group.rs | 286 id.function_name, in run_bench() 404 pub(crate) function_name: Option<String>, field 438 function_name: S, in new() 442 function_name: Some(function_name.into()), in new() 451 function_name: None, in from_parameter() 458 function_name: None, in no_function() 465 function_name: None, in no_function_with_input() 488 let function_name = self.into(); in into_benchmark_id() localVariable 489 if function_name.is_empty() { in into_benchmark_id() 494 function_name: Some(function_name), in into_benchmark_id()
|
/external/tensorflow/tensorflow/core/grappler/optimizers/ |
D | function_api_info.cc | 167 const string& function_name = function.signature().name(); in Init() local 170 << " function: " << function_name in Init() 174 intf_to_inference_funcs_[interface_name].emplace_back(function_name); in Init() 178 intf_to_forward_funcs_[interface_name].emplace_back(function_name); in Init() 182 intf_to_backward_funcs_[interface_name].emplace_back(function_name); in Init() 189 func_info_[function_name] = std::move(func_info); in Init() 201 const string& function_name, std::vector<string>* other_functions) const { in GetEquivalentImplementations() argument 202 const auto func_it = func_info_.find(function_name); in GetEquivalentImplementations() 223 if (func_name == function_name) continue; in GetEquivalentImplementations() 230 const string& function_name) const { in GetApiInfo() [all …]
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | error_utils.py | 85 for filename, line_number, function_name, text in reversed(tb): 93 function_name=origin.function_name, 107 function_name=prev.function_name, 117 function_name=function_name, 192 frame_info.function_name)
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | placer_inspection_required_ops_utils.cc | 84 const string& function_name = func->name(); in GetFunctionDefAndAttrs() local 85 *fdef = flib_def.Find(function_name); in GetFunctionDefAndAttrs() 88 "Failed to find function \"", function_name, in GetFunctionDefAndAttrs() 94 FunctionStack::FunctionStack(const string& function_name) in FunctionStack() argument 95 : current_function_name_(function_name) {} in FunctionStack() 106 bool FunctionStack::HasFunction(const string& function_name) const { in HasFunction() 107 if (current_function_name_ == function_name) { in HasFunction() 111 if (frame.function_name == function_name) { in HasFunction() 121 if (frames_[i].function_name.empty()) { in FormatForError() 129 "Function ", errors::FormatFunctionForError(frames_[i].function_name), in FormatForError() [all …]
|
D | placer_inspection_required_ops_utils.h | 84 explicit FunctionStack(const string& function_name); 91 bool HasFunction(const string& function_name) const; 102 : function_name(function), node(node) {} in Frame() 104 string function_name; member
|
/external/elfutils/libdw/ |
D | dwarf_linefunctionname.c | 46 if (str_data == NULL || line->function_name >= str_data->d_size in dwarf_linefunctionname() 47 || memchr (str_data->d_buf + line->function_name, '\0', in dwarf_linefunctionname() 48 str_data->d_size - line->function_name) == NULL) in dwarf_linefunctionname() 51 return (char *) str_data->d_buf + line->function_name; in dwarf_linefunctionname()
|
/external/compiler-rt/lib/asan/scripts/ |
D | asan_symbolize.py | 106 function_name = self.pipe.stdout.readline().rstrip() 107 if not function_name: 111 if (not function_name.startswith('??') or 114 result.append('%s in %s %s' % (addr, function_name, 163 function_name = self.pipe.stdout.readline().rstrip() 167 elif function_name in ['', '??']: 168 assert file_name == function_name 170 lines.append((function_name, file_name)); 234 function_name = match.group(1) 235 function_name = re.sub('\(.*?\)', '', function_name) [all …]
|
/external/tensorflow/tensorflow/tools/graph_transforms/ |
D | inline_partitionedcall.cc | 37 const GraphDef& graph, absl::string_view function_name) { in GetFunctionByNameFromLibrary() argument 39 if (fct.signature().name() == function_name) { in GetFunctionByNameFromLibrary() 75 const std::string function_name = in InlinePartitionedCall() local 78 GetFunctionByNameFromLibrary(input_graph_def, function_name); in InlinePartitionedCall() 81 "function " + function_name + " Not found"); in InlinePartitionedCall() 100 "Called function " + function_name + in InlinePartitionedCall()
|
/external/toolchain-utils/afdo_redaction/ |
D | remove_cold_functions.py | 67 function_count=count, function_body=body, function_name=name)) 76 function_count=count, function_body=body, function_name=name)) 86 cwp_functions = {x.function_name for x in cwp} 87 benchmark_functions = {x.function_name for x in benchmark} 88 all_functions = {x.function_name for x in records} 113 records.sort(key=lambda x: (-x.function_count, x.function_name))
|