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

  /external/llvm/unittests/Support/
CommandLineTest.cpp 134 SmallVector<const char *, 0> Actual;
136 parse(Input, Saver, Actual);
137 EXPECT_EQ(OutputSize, Actual.size());
138 for (unsigned I = 0, E = Actual.size(); I != E; ++I) {
140 EXPECT_STREQ(Output[I], Actual[I]);
141 free(const_cast<char *>(Actual[I]));
  /external/llvm/lib/Analysis/
Lint.cpp 227 Value *Actual = *AI;
230 Assert1(Formal->getType() == Actual->getType(),
237 if (Formal->hasNoAliasAttr() && Actual->getType()->isPointerTy())
247 if (Formal->hasStructRetAttr() && Actual->getType()->isPointerTy()) {
250 visitMemoryReference(I, Actual, AA->getTypeStoreSize(Ty),
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 519 void *Actual = TheJIT->isCompilingLazily()
525 Actual = TheJIT->getPointerToFunction(F);
529 if (!Actual) return 0;
534 // Codegen a new stub, calling the lazy resolver or the actual address of the
536 Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
539 if (Actual != (void*)(intptr_t)LazyResolverFn) {
557 } else if (!Actual) {
562 "'Actual' should have been set above.");
654 << "' In stub ptr = " << Stub << " actual ptr = "
    [all...]

Completed in 75 milliseconds