Searched defs:function_data (Results 1 - 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/distributed_runtime/
H A Dcluster_function_library_runtime.cc114 for (auto& function_data : function_data_) {
115 worker_session_->worker_cache->ReleaseWorker(function_data.target,
116 function_data.wi);
164 FunctionData* function_data = nullptr; local
168 function_data = &function_data_[handle];
171 WorkerInterface* wi = function_data->wi;
180 req.set_graph_handle(function_data->graph_handle);
185 for (const auto& send_key : function_data->send_keys) {
191 const std::vector<string>& recv_keys = function_data->recv_keys;
/external/tensorflow/tensorflow/core/common_runtime/
H A Dprocess_function_library_runtime.cc199 const FunctionData& function_data = function_data_[handle]; local
200 if (function_data.target_device != device_name) {
203 return function_data.local_handle;
210 const FunctionData& function_data = function_data_[handle]; local
211 return function_data.target_device;
/external/v8/src/inspector/
H A Dv8-profiler-agent-impl.cc304 v8::debug::Coverage::FunctionData function_data = local
312 .setStartLineNumber(function_data.Start().GetLineNumber())
313 .setStartColumnNumber(function_data.Start().GetColumnNumber())
314 .setEndLineNumber(function_data.End().GetLineNumber())
315 .setEndColumnNumber(function_data.End().GetColumnNumber())
316 .setCount(function_data.Count())
321 function_data.Name().FromMaybe(v8::Local<v8::String>())))
/external/v8/src/runtime/
H A Druntime-debug.cc1924 const auto& function_data = script_data.functions[j]; local
1927 factory->NewNumberFromInt(function_data.start),
1930 factory->NewNumberFromInt(function_data.end), NONE);
1932 factory->NewNumberFromUint(function_data.count),
/external/v8/src/
H A Dd8.cc1714 debug::Coverage::FunctionData function_data = local
1716 int start_line = function_data.Start().GetLineNumber();
1717 int end_line = function_data.End().GetLineNumber();
1718 uint32_t count = function_data.Count();
1731 if (function_data.Name().ToLocal(&name)) {
1735 name_stream << function_data.Start().GetColumnNumber() << ">";

Completed in 280 milliseconds