HomeSort by relevance Sort by last modified time
    Searched defs:callee (Results 1 - 25 of 235) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/Analysis/diagnostics/
undef-value-callee.h 2 void callee() { function
  /external/clang/test/CodeGen/
arm64-be-hfa-vararg.c 6 double callee(int a, ...) { function
  /art/test/642-fp-callees/src/
Main.java 25 $noinline$callee(a, b, c);
30 public static void $noinline$callee(int a, int b, long c) {
  /external/clang/test/CodeGenCXX/
pr20719.cpp 15 H<Fx> callee; local
20 H<Fx> callee; local
  /external/mesa3d/src/compiler/glsl/
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();
ir_validate.cpp 836 ir_function_signature *const callee = ir->callee; local
838 if (callee->ir_type != ir_type_function_signature) {
844 if (ir->return_deref->type != callee->return_type) {
845 printf("callee type %s does not match return storage type %s\n",
846 callee->return_type->name, ir->return_deref->type->name);
849 } else if (callee->return_type != glsl_type::void_type) {
850 printf("ir_call has non-void callee but no return storage\n");
854 const exec_node *formal_param_node = callee->parameters.get_head_raw();
888 printf("callee:\n")
    [all...]
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->return_type)
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee = var
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/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee = var
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/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee = var
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/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee = var
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
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug286.go 15 var callee string var
20 func (t *T) f() { callee = "f" }
21 func (i *T) g() { callee = "g" }
35 if callee != "f" {
36 println("test1 called", callee)
47 if callee != "f" {
48 println("test2 called", callee)
60 if callee != "f" {
61 println("test3 called", callee)
  /prebuilts/go/linux-x86/test/fixedbugs/
bug286.go 15 var callee string var
20 func (t *T) f() { callee = "f" }
21 func (i *T) g() { callee = "g" }
35 if callee != "f" {
36 println("test1 called", callee)
47 if callee != "f" {
48 println("test2 called", callee)
60 if callee != "f" {
61 println("test3 called", callee)
  /external/libffi/testsuite/libffi.call/
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/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
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/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
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/tensorflow/tensorflow/compiler/xla/service/
call_inliner.cc 26 // Traverses the callee computation, inlining cloned nodes into the caller
90 // Resolves the callee subcomputation_hlo to the new (inline) HLO in the
103 // Notes that the given subcomputation_hlo in the callee has been mapped to
130 HloComputation* callee = callees[0]; local
131 // We visit the callee, cloning its body into its caller.
133 TF_RETURN_IF_ERROR(callee->Accept(&visitor));
  /external/tensorflow/tensorflow/compiler/xla/tests/
call_test.cc 78 Computation callee = CreateR0F32IdentityComputation(); local
80 builder.Call(callee, {constant});
87 Computation callee = CreateR1S0F32AdditionComputation(); local
90 builder.Call(callee, {x, y});
97 Computation callee = CreateR1S2F32AdditionComputation(); local
100 builder.Call(callee, {x, y});
138 Computation callee = CreateR0F32TupleComputation(); local
141 builder.Call(callee, {builder.ConstantLiteral(*elem)});
  /external/v8/tools/clang/pass_to_move/
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()))),
  /art/compiler/optimizing/
sharpening.cc 93 ArtMethod* callee = invoke->GetResolvedMethod(); local
94 DCHECK(callee != nullptr);
113 if (callee == codegen->GetGraph()->GetArtMethod() && !codegen->GetGraph()->IsDebuggable()) {
118 AOTCanEmbedMethod(callee, codegen->GetCompilerOptions())) {
122 method_load_data = reinterpret_cast<uintptr_t>(callee);
125 BootImageAOTCanEmbedMethod(callee, compiler_driver)) {
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
VariadicResolutionTest.java 68 MethodUsage callee = javaParserFacade.solveMethodAsUsage(callExpr); local
69 assertEquals("variadicMethod", callee.getName());
82 MethodUsage callee = javaParserFacade.solveMethodAsUsage(callExpr); local
83 assertEquals("variadicWithGenericArg", callee.getName());
  /external/llvm/tools/llvm-c-test/
module.c 101 LLVMValueRef callee = local
103 printf(" calls: %s\n", LLVMGetValueName(callee));
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
profile.py 286 callee = add_cycles_to_function(functions, func_name, address, cycles) variable
287 if (prev_callee != None) and (prev_callee != callee):
289 prev_callee = callee
298 # Fixup the last callee
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee = var
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/Chapter5/
codegen.ml 34 | Ast.Call (callee, args) ->
36 let callee = var
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

Completed in 448 milliseconds

1 2 3 4 5 6 7 8 910