/external/clang/test/Analysis/diagnostics/ |
H A D | undef-value-callee.h | 2 void callee() { function
|
H A D | undef-value-caller.c | 4 #include "undef-value-callee.h" 10 callee();
|
/external/mesa3d/src/compiler/glsl/ |
H A D | ir_function_can_inline.cpp | 61 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 D | link_functions.cpp | 68 * 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 D | lower_subroutine.cpp | 47 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 D | pr20719.cpp | 15 H<Fx> callee; local 20 H<Fx> callee; local
|
/external/clang/test/CodeGen/ |
H A D | arm64-be-hfa-vararg.c | 6 double callee(int a, ...) { function
|
/external/compiler-rt/test/asan/TestCases/ |
H A D | coverage-trace-pc.cc | 11 extern "C" void __sanitizer_cov_trace_pc_indir(void *callee) { argument 12 last_callee = callee;
|
/external/swiftshader/third_party/subzero/crosstest/ |
H A D | test_calling_conv_main.cpp | 29 // 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 D | expressions.c | 71 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 D | CallGraph.java | 135 // 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 D | genk-timing.py | 48 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 D | genk-timing.py | 53 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 D | genk-timing.py | 48 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 D | CheckTraceVisitor.cpp | 42 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 D | PassToMove.cpp | 44 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 D | nir_inline_functions.c | 42 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 D | codegen.ml | 34 | 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 D | codegen.ml | 34 | 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 D | codegen.ml | 34 | 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 D | codegen.ml | 34 | 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 D | codegen.ml | 22 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 D | codegen.ml | 22 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 D | problem1.c | 16 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 D | AnalyzeCallDepth.h | 42 void addCallee(FunctionNode *callee);
|