Home
last modified time | relevance | path

Searched refs:callees (Results 1 - 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
H A DAnalyzeCallDepth.cpp47 for(size_t i = 0; i < callees.size(); i++) in addCallee()
49 if(callees[i] == callee) in addCallee()
55 callees.push_back(callee); in addCallee()
66 for(size_t i = 0; i < callees.size(); i++) in analyzeCallDepth()
69 switch(callees[i]->visit) in analyzeCallDepth()
75 calleeDepth = callees[i]->getLastDepth(); in analyzeCallDepth()
78 calleeDepth = callees[i]->analyzeCallDepth(analyzeCallDepth); in analyzeCallDepth()
81 UNREACHABLE(callees[i]->visit); in analyzeCallDepth()
H A DAnalyzeCallDepth.h50 TVector<FunctionNode*> callees; member in AnalyzeCallDepth::FunctionNode
/third_party/mesa3d/src/compiler/glsl/
H A Dir_function_detect_recursion.cpp34 * repeatedly reduced by removing any function that either has no callees
148 exec_list callees; member in __anon7172::function
212 this->current->callees.push_tail(node); in visit_enter()
253 if (f->callers.is_empty() || f->callees.is_empty()) { in remove_unlinked_functions()
256 destroy_links(& n->func->callees, f); in remove_unlinked_functions()
259 while (!f->callees.is_empty()) { in remove_unlinked_functions()
260 struct call_node *n = (struct call_node *) f->callees.pop_head(); in remove_unlinked_functions()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DCallDAG.cpp76 record.callees.reserve(data.callees.size()); in fillDataStructures()
77 for (auto &callee : data.callees) in fillDataStructures()
79 record.callees.push_back(static_cast<int>(callee->index)); in fillDataStructures()
93 std::set<CreatorFunctionData *> callees; member
131 // Function call, add the callees
140 mCurrentFunction->callees.insert(&it->second);
162 // in which we add the function being processed's callees. However in order to detect in assignIndicesInternal()
165 // [F visiting = true, subset of F callees with visiting = false] and the following in assignIndicesInternal()
206 for (auto callee : function->callees) in assignIndicesInternal()
[all...]
H A DCallDAG.h30 // of the function definition and the indices of the function's callees.
45 std::vector<int> callees; member
H A DCompiler.cpp1416 for (int calleeIndex : record.callees) in checkCallDepth()
1441 for (const int &calleeIndex : mCallDag.getRecordFromIndex(currentFunction).callees) in checkCallDepth()
1488 for (int calleeIndex : mCallDag.getRecordFromIndex(index).callees) in internalTagUsedFunction()
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/
H A Dcall_graph.cpp52 // recording known callees. in BuildGraphAndGetDepthOfFunctionCalls()
142 const auto& callees = call_graph_edges_[function_id]; in ComputeInterproceduralFunctionCallDepths() local
146 for (uint32_t callee : callees) { in ComputeInterproceduralFunctionCallDepths()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/
H A Dcall_graph.cpp52 // recording known callees. in BuildGraphAndGetDepthOfFunctionCalls()
142 const auto& callees = call_graph_edges_[function_id]; in ComputeInterproceduralFunctionCallDepths() local
146 for (uint32_t callee : callees) { in ComputeInterproceduralFunctionCallDepths()
/third_party/spirv-tools/source/fuzz/
H A Dcall_graph.cpp52 // recording known callees. in BuildGraphAndGetDepthOfFunctionCalls()
142 const auto& callees = call_graph_edges_[function_id]; in ComputeInterproceduralFunctionCallDepths() local
146 for (uint32_t callee : callees) { in ComputeInterproceduralFunctionCallDepths()
/third_party/skia/third_party/externals/tint/src/inspector/
H A Dtest_inspector_builder.cc38 std::vector<std::string> callees, in MakeCallerBodyFunction()
41 body.reserve(callees.size() + 1); in MakeCallerBodyFunction()
42 for (auto callee : callees) { in MakeCallerBodyFunction()
37 MakeCallerBodyFunction(std::string caller, std::vector<std::string> callees, ast::DecorationList decorations) MakeCallerBodyFunction() argument
H A Dtest_inspector_builder.h53 /// @param callees names of the functions to be called
56 std::vector<std::string> callees,
/third_party/node/deps/v8/tools/gcmole/
H A Dgcmole.cc258 CalleesSet* callees = callgraph_[name]; in EnterScope() local
260 if (callees == NULL) { in EnterScope()
261 callgraph_[name] = callees = new CalleesSet(); in EnterScope()
264 scopes_.push(callees); in EnterScope()
282 CalleesSet* callees = i->second; in PrintCallGraph() local
283 for (CalleesSet::const_iterator j = callees->begin(), e = callees->end(); in PrintCallGraph()
1678 DumpCallees("dump-callees", "Dump callees for each function.");

Completed in 10 milliseconds