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

  /external/clang/lib/Sema/
SemaCoroutine.cpp 199 const StringRef Funcs[] = {"await_ready", "await_suspend", "await_resume"};
200 for (size_t I = 0, N = llvm::array_lengthof(Funcs); I != N; ++I) {
205 ExprResult Result = buildMemberCall(S, Operand, Loc, Funcs[I], None);
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 238 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs,
241 // functions listed in Funcs.
243 << (Funcs.size()==1 ? "this function is" : "these functions are")
246 PrintFunctionList(Funcs);
251 // will be in the clone and Funcs will still point to valid memory
261 for (unsigned i = 0, e = Funcs.size(); i != e; ++i) {
262 Function *F = cast<Function>(VMap[Funcs[i]]);
480 // functions listed in Funcs.
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 140 SmallVector<std::unique_ptr<GCOVFunction>, 16> Funcs;
515 Funcs.push_back(make_unique<GCOVFunction>(SP, F, &out, FunctionIdent++,
518 GCOVFunction &Func = *Funcs.back();
562 for (auto &Func : Funcs) {
864 uint32_t FuncChecksum = Funcs.empty() ? 0 : Funcs[j]->getFuncChecksum();
    [all...]

Completed in 7918 milliseconds