HomeSort by relevance Sort by last modified time
    Searched defs:Actual (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
Lint.cpp 222 Value *Actual = *AI;
225 Assert1(Formal->getType() == Actual->getType(),
232 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
242 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
245 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 939 void *Actual = NULL;
941 Actual = GetPointerToFunction(F, /* AbortOnFailure = */false);
946 // Codegen a new stub, calling the actual address of the external
950 Stub = mpTJI->emitFunctionStub(F, Actual, *this);
957 if (!Actual) {
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 534 void *Actual = TheJIT->isCompilingLazily()
540 Actual = TheJIT->getPointerToFunction(F);
544 if (!Actual) return 0;
549 // Codegen a new stub, calling the lazy resolver or the actual address of the
551 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
554 if (Actual != (void*)(intptr_t)LazyResolverFn) {
572 } else if (!Actual) {
577 "'Actual' should have been set above.");
669 << "' In stub ptr = " << Stub << " actual ptr = "
    [all...]

Completed in 120 milliseconds