OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Add1F
(Results
1 - 2
of
2
) sorted by null
/external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp
65
Function *
Add1F
=
72
BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock",
Add1F
);
82
assert(
Add1F
->arg_begin() !=
Add1F
->arg_end()); // Make sure there's an arg
83
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
38
Function *
Add1F
=
46
BasicBlock *BB = BasicBlock::Create(M->getContext(), "EntryBlock",
Add1F
);
52
assert(
Add1F
->arg_begin() !=
Add1F
->arg_end()); // Make sure there's an arg
53
Argument *ArgX = &*
Add1F
->arg_begin(); // Get the arg
63
return
Add1F
;
250
Function*
add1F
= createAdd1( M );
260
struct threadParams add1 = { EE,
add1F
, 1000 };
Completed in 1333 milliseconds