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

1 2 3

  /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
  /external/chromium_org/v8/test/webkit/
apply-varargs.js 29 function callee(a1, a2, a3, a4, a5, a6, a7, a8) function
65 var allArgs = [0, "String", callee, true, null, 2.5, [1, 2, 3], {'a': 1, 'b' : 2}];
78 var result = callee.apply(baseObj, varArgs);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_function_can_inline.cpp 62 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();
ir_validate.cpp 571 ir_function_signature *const callee = ir->callee; local
573 if (callee->ir_type != ir_type_function_signature) {
579 if (ir->return_deref->type != callee->return_type) {
580 printf("callee type %s does not match return storage type %s\n",
581 callee->return_type->name, ir->return_deref->type->name);
584 } else if (callee->return_type != glsl_type::void_type) {
585 printf("ir_call has non-void callee but no return storage\n");
589 const exec_node *formal_param_node = callee->parameters.head;
623 printf("callee:\n")
    [all...]
link_functions.cpp 66 * 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 will b
    [all...]
ir_reader.cpp 652 ir_function_signature *callee = f->matching_signature(&parameters); local
653 if (callee == NULL) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
667 return new(mem_ctx) ir_call(callee, return_deref, &parameters);
ir.h 1129 ir_call(ir_function_signature *callee,
1132 : return_deref(return_deref), callee(callee)
1135 assert(callee->return_type != NULL);
1137 this->use_builtin = callee->is_builtin;
1187 ir_function_signature *callee; member in class:ir_call
    [all...]
  /external/mesa3d/src/glsl/
ir_function_can_inline.cpp 62 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();
ir_validate.cpp 571 ir_function_signature *const callee = ir->callee; local
573 if (callee->ir_type != ir_type_function_signature) {
579 if (ir->return_deref->type != callee->return_type) {
580 printf("callee type %s does not match return storage type %s\n",
581 callee->return_type->name, ir->return_deref->type->name);
584 } else if (callee->return_type != glsl_type::void_type) {
585 printf("ir_call has non-void callee but no return storage\n");
589 const exec_node *formal_param_node = callee->parameters.head;
623 printf("callee:\n")
    [all...]
link_functions.cpp 66 * 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 will b
    [all...]
ir_reader.cpp 652 ir_function_signature *callee = f->matching_signature(&parameters); local
653 if (callee == NULL) {
659 if (callee->return_type == glsl_type::void_type && return_deref) {
662 } else if (callee->return_type != glsl_type::void_type && !return_deref) {
667 return new(mem_ctx) ir_call(callee, return_deref, &parameters);
ir.h 1129 ir_call(ir_function_signature *callee,
1132 : return_deref(return_deref), callee(callee)
1135 assert(callee->return_type != NULL);
1137 this->use_builtin = callee->is_builtin;
1187 ir_function_signature *callee; member in class:ir_call
    [all...]
  /external/llvm/tools/llvm-c-test/
module.c 78 LLVMValueRef callee = local
80 printf(" calls: %s\n", LLVMGetValueName(callee));
  /art/compiler/sea_ir/code_gen/
code_gen.cc 197 // TODO: Build callee LLVM function name.
201 llvm::Function *callee = llvm_data_->module_.getFunction(function_name); local
203 DCHECK(NULL != callee);
214 llvm::Value* return_value = llvm_data_->builder_.CreateCall(callee,
  /art/runtime/
stack.cc 553 // Skip runtime save all callee frames which are used to deliver exceptions.
555 mirror::ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs); local
556 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
  /external/chromium_org/v8/src/arm/
stub-cache-arm.cc 752 Register callee = r0; local
779 // Put callee in place.
780 __ Move(callee, function);
    [all...]
  /external/chromium_org/v8/src/arm64/
stub-cache-arm64.cc 706 Register callee = x0; local
732 // Put callee in place.
733 __ LoadObject(callee, function);
    [all...]
  /external/chromium_org/v8/src/ia32/
stub-cache-ia32.cc 378 Register callee = eax; local
406 // Put callee in place.
407 __ LoadHeapObject(callee, function);
    [all...]
  /external/chromium_org/v8/src/mips/
stub-cache-mips.cc 744 Register callee = a0; local
771 // Put callee in place.
772 __ li(callee, function);
    [all...]
  /external/chromium_org/v8/src/x64/
stub-cache-x64.cc 351 Register callee = rax; local
379 // Put callee in place.
380 __ Move(callee, function);
    [all...]
  /external/chromium_org/v8/src/x87/
stub-cache-x87.cc 378 Register callee = eax; local
406 // Put callee in place.
407 __ LoadHeapObject(callee, function);
    [all...]
  /external/chromium_org/v8/tools/gcmole/
gcmole.cc 134 const clang::FunctionDecl* callee = expr->getDirectCallee(); local
135 if (callee != NULL) AnalyzeFunction(callee);
860 clang::FunctionDecl* callee = call->getDirectCallee(); local
861 if ((callee != NULL) && KnownToCauseGC(ctx_, callee)) {
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 2548 const Expr *callee = call->getCallee(); local
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 29 llvm::Value *Callee,
63 Callee, ReturnValue, Args, MD);
78 const Expr *callee = CE->getCallee()->IgnoreParens(); local
80 if (isa<BinaryOperator>(callee))
83 const MemberExpr *ME = cast<MemberExpr>(callee);
88 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
89 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
180 llvm::Value *Callee;
193 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
195 Callee = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete, FInfo, Ty)
    [all...]

Completed in 1047 milliseconds

1 2 3