Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/compiler/
DDetectCallDepth.cpp24 for (size_t i = 0; i < callees.size(); ++i) { in addCallee()
25 if (callees[i] == callee) in addCallee()
28 callees.push_back(callee); in addCallee()
38 for (size_t i = 0; i < callees.size(); ++i) { in detectCallDepth()
39 switch (callees[i]->visit) { in detectCallDepth()
49 int callDepth = callees[i]->detectCallDepth(detectCallDepth, depth + 1); in detectCallDepth()
52 detectCallDepth->getInfoSink().info << "<-" << callees[i]->getName(); in detectCallDepth()
DDetectCallDepth.h60 TVector<FunctionNode*> callees; variable
/external/chromium_org/third_party/mesa/src/src/glsl/
Dir_function_detect_recursion.cpp165 exec_list callees; member in function
227 this->current->callees.push_tail(node); in visit_enter()
268 if (f->callers.is_empty() || f->callees.is_empty()) { in remove_unlinked_functions()
271 destroy_links(& n->func->callees, f); in remove_unlinked_functions()
274 while (!f->callees.is_empty()) { in remove_unlinked_functions()
275 struct call_node *n = (struct call_node *) f->callees.pop_head(); in remove_unlinked_functions()
/external/mesa3d/src/glsl/
Dir_function_detect_recursion.cpp165 exec_list callees; member in function
227 this->current->callees.push_tail(node); in visit_enter()
268 if (f->callers.is_empty() || f->callees.is_empty()) { in remove_unlinked_functions()
271 destroy_links(& n->func->callees, f); in remove_unlinked_functions()
274 while (!f->callees.is_empty()) { in remove_unlinked_functions()
275 struct call_node *n = (struct call_node *) f->callees.pop_head(); in remove_unlinked_functions()
/external/oprofile/libpp/
Dcallgraph_container.cpp295 data.callees[*callee] += arc_count; in add()
313 sym.callees.push_back(self); in process_children()
316 sort(sym.callees.begin(), sym.callees.end(), compare_arc_count_reverse); in process_children()
330 cit = sym.callees.begin(); in process_children()
331 cend = sym.callees.end(); in process_children()
338 sym.callees.erase(cit, sym.callees.end()); in process_children()
371 cend = data.callees.end(); in process()
373 for (cit = data.callees.begin(); cit != cend; ++cit) { in process()
376 sym.callees.push_back(csym); in process()
Dsymbol.h116 children callees; variable
Dcallgraph_container.h80 children callees; member
Dformat_output.cpp537 cend = sym->callees.end(); in output()
539 for (cit = sym->callees.begin(); cit != cend; ++cit) { in output()
771 output_cg_children(out, cg_symb->callees, abfd); in output_symbol_data()
1040 output_symbol_core(out, cg_symb->callees, selfname, qname, lo, hi, is_module, CALLEES); in output_symbol()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc167 CalleesSet* callees = callgraph_[name]; in EnterScope() local
169 if (callees == NULL) { in EnterScope()
170 callgraph_[name] = callees = new CalleesSet(); in EnterScope()
173 scopes_.push(callees); in EnterScope()
190 CalleesSet* callees = i->second; in PrintCallGraph() local
191 for (CalleesSet::const_iterator j = callees->begin(), e = callees->end(); in PrintCallGraph()
/external/v8/tools/gcmole/
Dgcmole.cc167 CalleesSet* callees = callgraph_[name]; in EnterScope() local
169 if (callees == NULL) { in EnterScope()
170 callgraph_[name] = callees = new CalleesSet(); in EnterScope()
173 scopes_.push(callees); in EnterScope()
190 CalleesSet* callees = i->second; in PrintCallGraph() local
191 for (CalleesSet::const_iterator j = callees->begin(), e = callees->end(); in PrintCallGraph()
/external/chromium_org/v8/test/webkit/
Dstrict-callback-this-expected.txt24 …a call to array/string prototype methods pass the correct this value (undefined) to strict callees.
/external/llvm/lib/Target/ARM/
DARM.td105 // "normal" call instructions to callees which do not return.
/external/llvm/docs/
DPasses.rst634 Bottom-up inlining of functions into callees.
1155 #. If it can prove that callees do not access theier caller stack frame, they
DWritingAnLLVMPass.rst375 passes that need to traverse the program bottom-up on the call graph (callees
389 in the current SCC and the direct callers and direct callees of the SCC.
DLangRef.rst337 support varargs and requires the prototype of all callees to exactly
345 prototype of all callees to exactly match the prototype of the
3287 "normal" label. If the callee (or any indirect callees) returns via the
DCodeGenerator.rst2348 to spill registers r3-r10. This allows callees blind to the call signature,
/external/oprofile/
DChangeLog-200721 * libpp/format_output.cpp: output XML SYMBOL_DATA for callers/callees