Searched refs:callee (Results 1 - 25 of 175) 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/compiler/glsl/
H A Dir_function_can_inline.cpp61 const ir_function_signature *callee = call->callee; local
62 if (!callee->is_defined)
65 v.run((exec_list *) &callee->body);
70 ir_instruction *last = (ir_instruction *)callee->body.get_tail();
H A Dlink_functions.cpp68 * shader callee will point to an ir_function_signature in the original
73 const ir_function_signature *const callee = ir->callee; local
74 assert(callee != NULL);
75 const char *const name = callee->function_name();
78 if (callee->is_intrinsic())
85 find_matching_signature(name, &callee->parameters, linked->symbols);
87 ir->callee = sig;
126 f->exact_matching_signature(NULL, &callee->parameters);
128 linked_sig = new(linked) ir_function_signature(callee
[all...]
H A Dlower_subroutine.cpp47 ir_call *call_clone(ir_call *call, ir_function_signature *callee);
63 lower_subroutine_visitor::call_clone(ir_call *call, ir_function_signature *callee) argument
76 return new(mem_ctx) ir_call(callee, new_return_ref, &new_parameters);
/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/swiftshader/third_party/subzero/crosstest/
H A Dtest_calling_conv_main.cpp29 // The crosstest code consists of caller / callee function pairs.
34 // The callee function writes the argument numbered ArgNum into the
38 // llc, pass arguments to the callee in the same way. The Caller() and
39 // Subzero_Caller() functions both call the same callee (which has been
73 #define X(caller, callee, argc) \
75 STR(caller), STR(callee), argc, &caller, &Subzero_::caller, \
76 reinterpret_cast<CalleePtrTy>(&Subzero_::callee), \
82 #define X(caller, callee, argc) \
84 STR(caller), STR(callee), argc, &caller, &Subzero_::caller, \
85 reinterpret_cast<CalleePtrTy>(&callee), \
[all...]
/external/clang/test/Parser/
H A Dexpressions.c71 void callee(double, double);
73 callee(foobar, // expected-error {{use of undeclared identifier 'foobar'}}
/external/r8/src/main/java/com/android/tools/r8/ir/conversion/
H A DCallGraph.java135 // Returns whether the method->callee edge has been removed from the call graph
137 public boolean isBreaker(DexEncodedMethod method, DexEncodedMethod callee) { argument
139 return (value != null) && value.contains(callee);
263 for (Node callee : callees) {
264 if (stack.contains(callee)) {
268 // We have a cycle; break it by removing node->callee.
269 toBeRemoved.add(callee);
270 callee.callers.remove(node);
271 breakers.computeIfAbsent(node.method, ignore -> new HashSet<>()).add(callee.method);
273 numberOfCycles += traverse(callee, stac
302 addCall(Node caller, Node callee) argument
[all...]
/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 result.SourceManager->getSpellingLoc(callee->getOperatorLoc()),
92 callee(functionDecl(hasName("Pass"), returns(rValueReferenceType()))),
/external/mesa3d/src/compiler/nir/
H A Dnir_inline_functions.c42 assert(param_idx < call->callee->num_params);
166 assert(call->callee->impl);
168 inline_function_impl(call->callee->impl, inlined);
171 nir_function_impl_clone(call->callee->impl);
172 callee_copy->function = call->callee;
201 call->callee->params[i].param_type != nir_parameter_out) {
225 call->callee->params[i].param_type != nir_parameter_in) {
230 if (!glsl_type_is_void(call->callee->return_type) &&
/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/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
H A Dproblem1.c16 my_ffi_struct callee(struct my_ffi_struct a1, struct my_ffi_struct a2) function
39 *(my_ffi_struct *)resp = callee(a1, a2);
77 ffi_call(&cif, FFI_FN(callee), &res, args);
/external/swiftshader/src/OpenGL/compiler/
H A DAnalyzeCallDepth.h42 void addCallee(FunctionNode *callee);

Completed in 899 milliseconds

1234567