Home
last modified time | relevance | path

Searched refs:callees (Results 1 – 20 of 20) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/
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()
DAnalyzeCallDepth.h50 TVector<FunctionNode*> callees; variable
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
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
140 mCurrentFunction->callees.insert(&it->second); in visitAggregate()
206 for (auto callee : function->callees) in assignIndicesInternal()
DCallDAG.h45 std::vector<int> callees; member
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/mesa3d/src/compiler/glsl/
Dir_function_detect_recursion.cpp148 exec_list callees; member in __anon1a0bc5df0111::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/swiftshader/third_party/SPIRV-Tools/source/fuzz/
Dcall_graph.cpp142 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/
Dcall_graph.cpp142 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/spirv-tools/source/fuzz/
Dcall_graph.cpp142 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/
Dtest_inspector_builder.cc38 std::vector<std::string> callees, in MakeCallerBodyFunction() argument
41 body.reserve(callees.size() + 1); in MakeCallerBodyFunction()
42 for (auto callee : callees) { in MakeCallerBodyFunction()
Dtest_inspector_builder.h56 std::vector<std::string> callees,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DFixedMetadataKinds.def37 LLVM_FIXED_MD_KIND(MD_callees, "callees", 23)
DIntrinsics.td1173 // callees. This needs to be a musttail call.
/third_party/node/deps/v8/tools/gcmole/
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()
/third_party/node/deps/v8/tools/
Dprofile_view.mjs91 * profile they can be either callees or callers.)
153 * profile they can be either callees or callers.)
Dprofile.mjs746 * Calculates a flat profile of callees starting from a node with
/third_party/ltp/tools/sparse/sparse-src/Documentation/release-notes/
Dv0.4.rst31 …modify these graphs in various ways, such as only showing the callers or callees of particular fun…
/third_party/python/Doc/c-api/
Dcall.rst123 When using *tp_call*, callees do not need to worry about
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARM.td352 // "normal" call instructions to callees which do not return.
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
DProgramMtl.mm1353 // This array is only used inside this function and its callees.