HomeSort by relevance Sort by last modified time
    Searched defs:callees (Results 1 - 5 of 5) sorted by null

  /external/swiftshader/src/OpenGL/compiler/
AnalyzeCallDepth.h 50 TVector<FunctionNode*> callees; member in class:AnalyzeCallDepth::FunctionNode
  /external/tensorflow/tensorflow/compiler/xla/service/
call_inliner.cc 129 const auto& callees = call->called_computations(); local
130 TF_RET_CHECK(callees.size() == 1);
131 HloComputation* callee = callees[0];
140 // Because call graph nodes are visited in post-order (callees before callers)
call_graph.h 111 const std::vector<HloComputation*>& callees() const { return callees_; } function in class:xla::CallGraphNode
197 // in post order (callees before callers). If visit_unreachable_nodes is true
  /external/mesa3d/src/compiler/glsl/
ir_function_detect_recursion.cpp 34 * repeatedly reduced by removing any function that either has no callees
149 exec_list callees; member in class:__anon32999::function
214 this->current->callees.push_tail(node);
255 if (f->callers.is_empty() || f->callees.is_empty()) {
258 destroy_links(& n->func->callees, f);
261 while (!f->callees.is_empty()) {
262 struct call_node *n = (struct call_node *) f->callees.pop_head();
  /external/v8/tools/gcmole/
gcmole.cc 166 CalleesSet* callees = callgraph_[name]; local
168 if (callees == NULL) {
169 callgraph_[name] = callees = new CalleesSet();
172 scopes_.push(callees);
189 CalleesSet* callees = i->second; local
190 for (CalleesSet::const_iterator j = callees->begin(), e = callees->end();
    [all...]

Completed in 113 milliseconds