OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:add1f
(Results
1 - 2
of
2
) sorted by null
/external/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
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 33 milliseconds