HomeSort by relevance Sort by last modified time
    Searched refs:callee (Results 1 - 25 of 229) 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
undef-value-caller.c 4 #include "undef-value-callee.h"
10 callee();
  /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();
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...]
  /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/clang/test/CodeGen/
arm64-be-hfa-vararg.c 6 double callee(int a, ...) { function
  /external/compiler-rt/test/asan/TestCases/
coverage-trace-pc.cc 11 extern "C" void __sanitizer_cov_trace_pc_indir(void *callee) {
12 last_callee = callee;
  /external/boringssl/ios-arm/crypto/test/
trampoline-armv4.S 21 @ abi_test_trampoline loads callee-saved registers from |state|, calls |func|
22 @ with |argv|, then saves the callee-saved registers into |state|. It returns
33 @ Save parameters and all callee-saved registers. For convenience, we
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
CtsTestUtils.java 42 public static <T> void runIfNotNull(T callee, Consumer<T> action) {
43 Optional.ofNullable(callee).ifPresent(action);
  /external/bcc/src/cc/frontends/p4/compiler/
ebpfAction.py 175 def serializeCallee(self, caller, callee, arguments,
185 assert isinstance(callee, p4_action)
188 if callee.name in EbpfAction.unsupported:
189 raise NotSupportedException("{0}", callee)
192 #if callee.name == "count":
200 if callee.name == "modify_field":
204 size = self.checkSize(callee,
210 callee)
228 elif (callee.name == "add" or
229 callee.name == "bit_and" o
    [all...]
  /external/swiftshader/third_party/subzero/crosstest/
test_calling_conv_main.cpp 29 // The crosstest code consists of caller / callee function pairs.
32 // function located at Callee.
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
44 // Callee() and Subzero_Callee() are being tested to ensure that both
49 CalleePtrTy Callee;
70 CalleePtrTy Callee;
73 #define X(caller, callee, argc) \
75 STR(caller), STR(callee), argc, &caller, &Subzero_::caller,
    [all...]
  /external/clang/test/Parser/
expressions.c 71 void callee(double, double);
73 callee(foobar, // expected-error {{use of undeclared identifier 'foobar'}}
  /external/tensorflow/tensorflow/compiler/xla/tests/
call_test.cc 79 XlaComputation callee = CreateR0F32IdentityComputation(); local
81 Call(&builder, callee, {constant});
88 XlaComputation callee = CreateR1S0F32AdditionComputation(); local
91 Call(&builder, callee, {x, y});
98 XlaComputation callee = CreateR1S2F32AdditionComputation(); local
103 Call(&builder, callee, {x, y});
141 XlaComputation callee = CreateR0F32TupleComputation(); local
144 Call(&builder, callee, {ConstantLiteral(&builder, elem)});
  /external/boringssl/linux-arm/crypto/test/
trampoline-armv4.S 22 @ abi_test_trampoline loads callee-saved registers from |state|, calls |func|
23 @ with |argv|, then saves the callee-saved registers into |state|. It returns
34 @ Save parameters and all callee-saved registers. For convenience, we
  /external/boringssl/src/crypto/test/asm/
trampoline-armv4.pl 57 @ abi_test_trampoline loads callee-saved registers from |state|, calls |func|
58 @ with |argv|, then saves the callee-saved registers into |state|. It returns
68 @ Save parameters and all callee-saved registers. For convenience, we
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
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 in self.calledFunctions
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
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 in self.calledFunctions
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
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 in self.calledFunctions
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/cached/
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 in self.calledFunctions
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/complete/
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 in self.calledFunctions
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/lazy/
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 in self.calledFunctions
    [all...]
  /external/v8/tools/clang/blink_gc_plugin/
CheckTraceVisitor.cpp 34 Expr* callee = call->getCallee();
41 dyn_cast<CXXDependentScopeMemberExpr>(callee)) {
52 if (UnresolvedMemberExpr* expr = dyn_cast<UnresolvedMemberExpr>(callee)) {
198 if (MemberExpr* callee = dyn_cast<MemberExpr>(call->getCallee())) {
199 if (!callee->hasQualifier())
203 dyn_cast<FunctionDecl>(callee->getMemberDecl());
207 const Type* type = callee->getQualifier()->getAsType();
213 } else if (UnresolvedMemberExpr* callee =
215 // Callee part may become unresolved if the type of the argument
224 for (NamedDecl* named_decl : callee->decls())
    [all...]
  /art/compiler/optimizing/
sharpening.h 34 ArtMethod* callee, CodeGenerator* codegen);
  /external/swiftshader/src/OpenGL/compiler/
AnalyzeCallDepth.h 42 void addCallee(FunctionNode *callee);

Completed in 765 milliseconds

1 2 3 4 5 6 7 8 910