Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/compiler/translator/
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.h58 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/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
Dperf-top.txt150 --ignore-callees=<regex>::
151 Ignore callees of the function(s) matching the given regex.
Dperf-report.txt142 --ignore-callees=<regex>::
143 Ignore callees of the function(s) matching the given regex.
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc166 CalleesSet* callees = callgraph_[name]; in EnterScope() local
168 if (callees == NULL) { in EnterScope()
169 callgraph_[name] = callees = new CalleesSet(); in EnterScope()
172 scopes_.push(callees); in EnterScope()
189 CalleesSet* callees = i->second; in PrintCallGraph() local
190 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.td115 // "normal" call instructions to callees which do not return.
/external/llvm/docs/
DPasses.rst604 Bottom-up inlining of functions into callees.
1087 #. If it can prove that callees do not access theier caller stack frame, they
DWritingAnLLVMPass.rst374 passes that need to traverse the program bottom-up on the call graph (callees
388 in the current SCC and the direct callers and direct callees of the SCC.
DLangRef.rst296 support varargs and requires the prototype of all callees to exactly
304 prototype of all callees to exactly match the prototype of the
3635 "normal" label. If the callee (or any indirect callees) returns via the
DCodeGenerator.rst2360 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