HomeSort by relevance Sort by last modified time
    Searched defs:callee (Results 1 - 25 of 66) 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/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/clang/test/CodeGenCXX/
pr20719.cpp 15 H<Fx> callee; local
20 H<Fx> callee; local
  /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));
  /external/v8/test/mjsunit/es6/
promises.js 46 var poisoned = {caller: 0, callee: 0, arguments: 0}
  /external/v8/src/compiler/
instruction-selector.cc 283 // The first argument is always the callee code.
284 Node* callee = call->InputAt(0); local
288 (call_code_immediate && callee->opcode() == IrOpcode::kHeapConstant)
289 ? g.UseImmediate(callee)
290 : g.UseRegister(callee));
295 (callee->opcode() == IrOpcode::kInt32Constant ||
296 callee->opcode() == IrOpcode::kInt64Constant))
297 ? g.UseImmediate(callee)
298 : g.UseRegister(callee));
302 g.UseLocation(callee, buffer->descriptor->GetInputLocation(0)
    [all...]
ast-graph-builder.cc 713 // Callee.
1191 Expression* callee = expr->expression(); local
1263 Node* callee = environment()->Peek(arg_count + 1); local
    [all...]
  /external/v8/src/ic/arm/
handler-compiler-arm.cc 236 Register callee = r0; local
262 // Put callee in place.
263 __ Move(callee, function);
  /external/v8/src/ic/arm64/
handler-compiler-arm64.cc 156 Register callee = x0; local
182 // Put callee in place.
183 __ LoadObject(callee, function);
  /external/v8/src/ic/ia32/
handler-compiler-ia32.cc 143 Register callee = eax; local
170 // Put callee in place.
171 __ LoadHeapObject(callee, function);
  /external/v8/src/ic/mips/
handler-compiler-mips.cc 232 Register callee = a0; local
258 // Put callee in place.
259 __ li(callee, function);
  /external/v8/src/ic/mips64/
handler-compiler-mips64.cc 232 Register callee = a0; local
258 // Put callee in place.
259 __ li(callee, function);
  /external/v8/src/ic/x64/
handler-compiler-x64.cc 137 Register callee = rax; local
164 // Put callee in place.
165 __ Move(callee, function);
  /external/v8/src/ic/x87/
handler-compiler-x87.cc 143 Register callee = eax; local
170 // Put callee in place.
171 __ LoadHeapObject(callee, function);
  /art/runtime/
stack.cc 758 // Skip runtime save all callee frames which are used to deliver exceptions.
760 ArtMethod* callee = Runtime::Current()->GetCalleeSaveMethod(Runtime::kRefsAndArgs); local
761 CHECK_EQ(GetMethod(), callee) << "Expected: " << PrettyMethod(callee) << " Found: "
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_coverage_libcdep.cc 83 void IndirCall(uptr caller, uptr callee, uptr callee_cache[],
149 // Caller-Callee (cc) array, size and current index.
410 // Registers a pair caller=>callee.
414 // Then we are trying to add callee to callee_cache [2,cache_size) if it is
416 // If the cache is full we drop the callee (may want to fix this later).
417 void CoverageData::IndirCall(uptr caller, uptr callee, uptr callee_cache[],
434 if (atomic_compare_exchange_strong(&atomic_callee_cache[i], &was, callee,
439 if (was == callee) // Already have this callee.
629 // This function dumps the caller=>callee pairs into a file as a sequence o
649 uptr callee = cc_cache[j]; local
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 2598 const Expr *callee = call->getCallee(); local
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 28 CodeGenFunction &CGF, const CXXMethodDecl *MD, llvm::Value *Callee,
73 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
79 *this, MD, Callee, ReturnValue, This, ImplicitParam, ImplicitParamTy, CE,
82 Callee, ReturnValue, Args, MD);
86 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
90 commonEmitCXXMemberOrOperatorCall(*this, MD, Callee, ReturnValue, This,
93 Callee, ReturnValue, Args, MD);
108 const Expr *callee = CE->getCallee()->IgnoreParens(); local
110 if (isa<BinaryOperator>(callee))
113 const MemberExpr *ME = cast<MemberExpr>(callee);
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 133 const clang::FunctionDecl* callee = expr->getDirectCallee(); local
134 if (callee != NULL) AnalyzeFunction(callee);
842 clang::FunctionDecl* callee = call->getDirectCallee(); local
843 if ((callee != NULL) && KnownToCauseGC(ctx_, callee)) {
    [all...]

Completed in 553 milliseconds

1 2 3