Home
last modified time | relevance | path

Searched refs:Fns (Results 1 – 19 of 19) sorted by relevance

/external/llvm/tools/sancov/
Dsancov.cc730 std::set<FileFn> Fns; in computeAllFunctions() local
732 Fns.insert(FileFn{AI.FileName, AI.FunctionName}); in computeAllFunctions()
734 return Fns; in computeAllFunctions()
738 std::set<FileFn> Fns; in computeCoveredFunctions() local
744 Fns.insert(P.first); in computeCoveredFunctions()
746 return Fns; in computeCoveredFunctions()
750 std::set<FileFn> Fns; in computeNotCoveredFunctions() local
761 Fns.insert(P.first); in computeNotCoveredFunctions()
764 return Fns; in computeNotCoveredFunctions()
788 FunctionLocs resolveFunctions(const std::set<FileFn> &Fns) const { in resolveFunctions()
[all …]
/external/llvm/lib/Analysis/
DCFLGraph.h321 const SmallVectorImpl<Function *> &Fns) { in tryInterproceduralAnalysis() argument
322 assert(Fns.size() > 0); in tryInterproceduralAnalysis()
328 for (auto *Fn : Fns) { in tryInterproceduralAnalysis()
337 for (auto *Fn : Fns) { in tryInterproceduralAnalysis()
DTargetLibraryInfo.cpp1024 void TargetLibraryInfoImpl::addVectorizableFunctions(ArrayRef<VecDesc> Fns) { in addVectorizableFunctions() argument
1025 VectorDescs.insert(VectorDescs.end(), Fns.begin(), Fns.end()); in addVectorizableFunctions()
1028 ScalarDescs.insert(ScalarDescs.end(), Fns.begin(), Fns.end()); in addVectorizableFunctions()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/sancov/
Dsancov.cpp977 std::set<FileFn> Fns; in computeFunctions() local
980 Fns.insert(FileFn{Loc.FileName, Loc.FunctionName}); in computeFunctions()
983 return Fns; in computeFunctions()
988 auto Fns = computeFunctions(Coverage.Points); in computeNotCoveredFunctions() local
995 Fns.erase(FileFn{Loc.FileName, Loc.FunctionName}); in computeNotCoveredFunctions()
999 return Fns; in computeNotCoveredFunctions()
1022 const std::set<FileFn> &Fns) { in resolveFunctions() argument
1027 if (Fns.find(Fn) == Fns.end()) in resolveFunctions()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DCFLGraph.h374 const SmallVectorImpl<Function *> &Fns) { in tryInterproceduralAnalysis() argument
375 assert(Fns.size() > 0); in tryInterproceduralAnalysis()
381 for (auto *Fn : Fns) { in tryInterproceduralAnalysis()
390 for (auto *Fn : Fns) { in tryInterproceduralAnalysis()
DTargetLibraryInfo.cpp1400 void TargetLibraryInfoImpl::addVectorizableFunctions(ArrayRef<VecDesc> Fns) { in addVectorizableFunctions() argument
1401 VectorDescs.insert(VectorDescs.end(), Fns.begin(), Fns.end()); in addVectorizableFunctions()
1404 ScalarDescs.insert(ScalarDescs.end(), Fns.begin(), Fns.end()); in addVectorizableFunctions()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
DCoroSplit.cpp381 std::initializer_list<Function *> Fns) { in setCoroInfo() argument
382 SmallVector<Constant *, 4> Args(Fns.begin(), Fns.end()); in setCoroInfo()
384 Function *Part = *Fns.begin(); in setCoroInfo()
/external/swiftshader/third_party/LLVM/utils/TableGen/
DCodeGenDAGPatterns.h383 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) { in setPredicateFns() argument
385 PredicateFns = Fns; in setPredicateFns()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DTargetLibraryInfo.h144 void addVectorizableFunctions(ArrayRef<VecDesc> Fns);
/external/llvm/utils/TableGen/
DCodeGenDAGPatterns.h409 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) { in setPredicateFns() argument
411 PredicateFns = Fns; in setPredicateFns()
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.h154 void addVectorizableFunctions(ArrayRef<VecDesc> Fns);
/external/swiftshader/third_party/LLVM/tools/bugpoint/
DMiscompilation.cpp432 const std::vector<Function*> &Fns) in ReduceMiscompiledBlocks() argument
433 : BD(bd), TestFn(F), FunctionsBeingTested(Fns) {} in ReduceMiscompiledBlocks()
/external/clang/lib/Sema/
DSemaOverload.cpp6041 void Sema::AddFunctionCandidates(const UnresolvedSetImpl &Fns, in AddFunctionCandidates() argument
6047 for (UnresolvedSetIterator F = Fns.begin(), E = Fns.end(); F != E; ++F) { in AddFunctionCandidates()
8450 ADLResult Fns; in AddArgumentDependentLookupCandidates() local
8460 ArgumentDependentLookup(Name, Loc, Args, Fns); in AddArgumentDependentLookupCandidates()
8467 Fns.erase(Cand->Function); in AddArgumentDependentLookupCandidates()
8469 Fns.erase(FunTmpl); in AddArgumentDependentLookupCandidates()
8474 for (ADLResult::iterator I = Fns.begin(), E = Fns.end(); I != E; ++I) { in AddArgumentDependentLookupCandidates()
11500 const UnresolvedSetImpl &Fns, in CreateOverloadedUnaryOp() argument
11527 if (Fns.empty()) in CreateOverloadedUnaryOp()
11535 /*ADL*/ true, IsOverloaded(Fns), in CreateOverloadedUnaryOp()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/bugpoint/
DMiscompilation.cpp456 const std::vector<Function *> &Fns) in ReduceMiscompiledBlocks() argument
457 : BD(bd), TestFn(F), FunctionsBeingTested(Fns) {} in ReduceMiscompiledBlocks()
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DCodeGenDAGPatterns.h670 void setPredicateFns(const std::vector<TreePredicateFn> &Fns) { in setPredicateFns() argument
672 PredicateFns = Fns; in setPredicateFns()
/external/llvm/tools/bugpoint/
DMiscompilation.cpp448 const std::vector<Function *> &Fns) in ReduceMiscompiledBlocks() argument
449 : BD(bd), TestFn(F), FunctionsBeingTested(Fns) {} in ReduceMiscompiledBlocks()
/external/clang/lib/CodeGen/
DCodeGenModule.h1208 void EmitCtorList(const CtorList &Fns, const char *GlobalName);
DCodeGenModule.cpp723 void CodeGenModule::EmitCtorList(const CtorList &Fns, const char *GlobalName) { in EmitCtorList() argument
734 for (const auto &I : Fns) { in EmitCtorList()
/external/clang/include/clang/Sema/
DSema.h2633 const UnresolvedSetImpl &Fns,
2638 const UnresolvedSetImpl &Fns,