OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Funcs
(Results
1 - 5
of
5
) sorted by null
/external/llvm/tools/bugpoint/
BugDriver.cpp
229
void llvm::PrintFunctionList(const std::vector<Function*> &
Funcs
) {
230
unsigned NumPrint =
Funcs
.size();
233
outs() << " " <<
Funcs
[i]->getName();
234
if (NumPrint <
Funcs
.size())
235
outs() << "... <" <<
Funcs
.size() << " total>";
CrashDebugger.cpp
197
bool ReduceCrashingFunctions::TestFuncs(std::vector<Function*> &
Funcs
) {
200
if (KeepMain && find(
Funcs
.begin(),
Funcs
.end(),
201
BD.getProgram()->getFunction("main")) ==
Funcs
.end())
210
for (unsigned i = 0, e =
Funcs
.size(); i != e; ++i) {
211
Function *CMF = cast<Function>(VMap[
Funcs
[i]]);
213
assert(CMF->getFunctionType() ==
Funcs
[i]->getFunctionType() && "wrong ty");
214
assert(CMF->getName() ==
Funcs
[i]->getName() && "wrong name");
219
PrintFunctionList(
Funcs
);
234
Funcs
.assign(Functions.begin(), Functions.end())
[
all
...]
Miscompilation.cpp
246
bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &
Funcs
,
249
// functions listed in
Funcs
.
251
<< (
Funcs
.size()==1 ? "this function is" : "these functions are")
254
PrintFunctionList(
Funcs
);
259
// will be in the clone and
Funcs
will still point to valid memory
269
for (unsigned i = 0, e =
Funcs
.size(); i != e; ++i) {
270
Function *F = cast<Function>(VMap[
Funcs
[i]]);
500
// functions listed in
Funcs
.
[
all
...]
BugDriver.h
313
void PrintFunctionList(const std::vector<Function*> &
Funcs
);
/frameworks/compile/libbcc/lib/Renderscript/
RSForEachExpand.cpp
618
static std::vector<std::string>
Funcs
;
621
Funcs
.push_back("_Z14rsGetElementAt13rs_allocationj");
622
Funcs
.push_back("_Z14rsGetElementAt13rs_allocationjj");
623
Funcs
.push_back("_Z14rsGetElementAt13rs_allocationjjj");
625
Funcs
.push_back("_Z14rsSetElementAt13rs_allocationPvj");
626
Funcs
.push_back("_Z14rsSetElementAt13rs_allocationPvjj");
627
Funcs
.push_back("_Z14rsSetElementAt13rs_allocationPvjjj");
629
Funcs
.push_back("_Z25rsGetElementAtYuv_uchar_Y13rs_allocationjj");
631
Funcs
.push_back("_Z25rsGetElementAtYuv_uchar_U13rs_allocationjj");
633
Funcs
.push_back("_Z25rsGetElementAtYuv_uchar_V13rs_allocationjj")
[
all
...]
Completed in 45 milliseconds