Searched refs:callee (Results 1 - 25 of 161) sorted by relevance

1234567

/external/clang/test/Analysis/diagnostics/
H A Dundef-value-callee.h2 void callee() { function
H A Dundef-value-caller.c4 #include "undef-value-callee.h"
10 callee();
/external/mesa3d/src/glsl/
H A Dir_function_can_inline.cpp62 const ir_function_signature *callee = call->callee; local
63 if (!callee->is_defined)
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
H A Dlink_functions.cpp66 * shader callee will point to an ir_function_signature in the original
71 const ir_function_signature *const callee = ir->callee; local
72 assert(callee != NULL);
73 const char *const name = callee->function_name();
79 find_matching_signature(name, &callee->parameters, &linked, 1,
82 ir->callee = sig;
116 f->exact_matching_signature(&callee->parameters);
120 linked_sig = new(linked) ir_function_signature(callee->return_type);
125 * ir_call from linked then linked_sig and callee wil
[all...]
H A Dopt_function_inlining.cpp110 foreach_iter(exec_list_iterator, iter_sig, this->callee->parameters)
119 exec_list_iterator sig_param_iter = this->callee->parameters.iterator();
164 foreach_iter(exec_list_iterator, iter, callee->body) {
176 sig_param_iter = this->callee->parameters.iterator();
199 sig_param_iter = this->callee->parameters.iterator();
/external/clang/test/CodeGenCXX/
H A Dpr20719.cpp15 H<Fx> callee; local
20 H<Fx> callee; local
/external/clang/test/CodeGen/
H A Darm64-be-hfa-vararg.c6 double callee(int a, ...) { function
/external/compiler-rt/test/asan/TestCases/
H A Dcoverage-trace-pc.cc11 extern "C" void __sanitizer_cov_trace_pc_indir(void *callee) { argument
12 last_callee = callee;
/external/clang/test/Parser/
H A Dexpressions.c71 void callee(double, double);
73 callee(foobar, // expected-error {{use of undeclared identifier 'foobar'}}
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dgenk-timing.py48 def updateTotalCallCount(self, callee):
52 if callee in self.comprehensiveCalledFunctionTable:
53 for child in self.comprehensiveCalledFunctionTable[callee]:
56 def updateFunctionCallMap(self, caller, callee):
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
66 def updateCalledFunctionList(self, callee):
69 self.updateTotalCallCount(callee)
71 if callee i
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dgenk-timing.py53 def updateTotalCallCount(self, callee):
57 if callee in self.comprehensiveCalledFunctionTable:
58 for child in self.comprehensiveCalledFunctionTable[callee]:
61 def updateFunctionCallMap(self, caller, callee):
65 if not callee in self.calledFunctionTable[caller]:
66 self.calledFunctionTable[caller].append(callee)
69 self.comprehensiveCalledFunctionTable[caller].append(callee)
71 def updateCalledFunctionList(self, callee):
74 self.updateTotalCallCount(callee)
76 if callee i
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dgenk-timing.py48 def updateTotalCallCount(self, callee):
52 if callee in self.comprehensiveCalledFunctionTable:
53 for child in self.comprehensiveCalledFunctionTable[callee]:
56 def updateFunctionCallMap(self, caller, callee):
60 if not callee in self.calledFunctionTable[caller]:
61 self.calledFunctionTable[caller].append(callee)
64 self.comprehensiveCalledFunctionTable[caller].append(callee)
66 def updateCalledFunctionList(self, callee):
69 self.updateTotalCallCount(callee)
71 if callee i
[all...]
/external/v8/tools/clang/blink_gc_plugin/
H A DCheckTraceVisitor.cpp42 Expr* callee = call->getCallee();
49 dyn_cast<CXXDependentScopeMemberExpr>(callee)) {
60 if (UnresolvedMemberExpr* expr = dyn_cast<UnresolvedMemberExpr>(callee)) {
216 if (MemberExpr* callee = dyn_cast<MemberExpr>(call->getCallee())) {
217 if (!callee->hasQualifier())
221 dyn_cast<FunctionDecl>(callee->getMemberDecl());
225 const Type* type = callee->getQualifier()->getAsType();
231 } else if (UnresolvedMemberExpr* callee =
243 for (NamedDecl* named_decl : callee->decls()) {
262 func_name = callee
321 CheckTraceFieldCall( const std::string& name, CXXRecordDecl* callee, Expr* arg) argument
[all...]
/external/v8/tools/clang/pass_to_move/
H A DPassToMove.cpp44 const clang::MemberExpr* callee = local
46 const bool is_arrow = callee->isArrow();
64 callee->getOperatorLoc()),
92 callee(functionDecl(hasName("Pass"), returns(rValueReferenceType()))),
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
H A Dcodegen.ml34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
/external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
H A Dcodegen.ml34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
H A Dcodegen.ml34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
H A Dcodegen.ml34 | Ast.Call (callee, args) ->
36 let callee =
37 match lookup_function callee the_module with
38 | Some callee -> callee
41 let params = params callee in
47 build_call callee args "calltmp" builder
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml22 let callee = "unary" ^ (String.make 1 op) in
23 let callee =
24 match lookup_function callee the_module with
25 | Some callee -> callee
28 build_call callee [|operand|] "unop" builder
44 let callee = "binary" ^ (String.make 1 op) in
45 let callee =
46 match lookup_function callee the_module with
47 | Some callee
[all...]
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml22 let callee = "unary" ^ (String.make 1 op) in
23 let callee =
24 match lookup_function callee the_module with
25 | Some callee -> callee
28 build_call callee [|operand|] "unop" builder
44 let callee = "binary" ^ (String.make 1 op) in
45 let callee =
46 match lookup_function callee the_module with
47 | Some callee
[all...]
/external/swiftshader/src/OpenGL/compiler/
H A DAnalyzeCallDepth.cpp28 void AnalyzeCallDepth::FunctionNode::addCallee(AnalyzeCallDepth::FunctionNode *callee) argument
32 if(callees[i] == callee)
38 callees.push_back(callee);
H A DAnalyzeCallDepth.h41 void addCallee(FunctionNode *callee);
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml31 let callee = "unary" ^ (String.make 1 op) in
32 let callee =
33 match lookup_function callee the_module with
34 | Some callee -> callee
37 build_call callee [|operand|] "unop" builder
73 let callee = "binary" ^ (String.make 1 op) in
74 let callee =
75 match lookup_function callee the_module with
76 | Some callee
[all...]
/external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
H A Dcodegen.ml31 let callee = "unary" ^ (String.make 1 op) in
32 let callee =
33 match lookup_function callee the_module with
34 | Some callee -> callee
37 build_call callee [|operand|] "unop" builder
73 let callee = "binary" ^ (String.make 1 op) in
74 let callee =
75 match lookup_function callee the_module with
76 | Some callee
[all...]
/external/webrtc/talk/app/webrtc/test/
H A Dpeerconnectiontestwrapper.cc56 PeerConnectionTestWrapper* callee) {
58 callee, &PeerConnectionTestWrapper::AddIceCandidate);
59 callee->SignalOnIceCandidateReady.connect(
63 callee, &PeerConnectionTestWrapper::ReceiveOfferSdp);
64 callee->SignalOnSdpReady.connect(
55 Connect(PeerConnectionTestWrapper* caller, PeerConnectionTestWrapper* callee) argument

Completed in 3775 milliseconds

1234567