HomeSort by relevance Sort by last modified time
    Searched full:add1f (Results 1 - 4 of 4) sorted by null

  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 73 Function *Add1F =
80 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
90 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
91 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
117 // Pass Ten to the call to Add1F
118 CallInst *Add1CallRes = builder.CreateCall(Add1F, Ten);
  /external/swiftshader/third_party/LLVM/examples/HowToUseJIT/
HowToUseJIT.cpp 64 Function *Add1F =
71 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
81 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
82 Argument *ArgX = Add1F->arg_begin(); // Get the arg
109 // Pass Ten to the call to Add1F
110 CallInst *Add1CallRes = builder.CreateCall(Add1F, Ten);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 54 Function *Add1F =
62 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F);
68 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
69 Argument *ArgX = &*Add1F->arg_begin(); // Get the arg
79 return Add1F;
266 Function* add1F = createAdd1( M );
276 struct threadParams add1 = { EE, add1F, 1000 };
  /external/swiftshader/third_party/LLVM/examples/ParallelJIT/
ParallelJIT.cpp 37 Function *Add1F =
45 BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock", Add1F);
51 assert(Add1F->arg_begin() != Add1F->arg_end()); // Make sure there's an arg
52 Argument *ArgX = Add1F->arg_begin(); // Get the arg
62 return Add1F;
244 Function* add1F = createAdd1( M );
254 struct threadParams add1 = { EE, add1F, 1000 };

Completed in 111 milliseconds