| /llvm-project-15.0.7/clang-tools-extra/clangd/unittests/ |
| H A D | Annotations.cpp | 22 std::vector<Position> Ps; in points() local 23 Ps.reserve(Offsets.size()); in points() 25 Ps.push_back(offsetToPosition(code(), O)); in points() 27 return Ps; in points()
|
| /llvm-project-15.0.7/llvm/unittests/FuzzMutate/ |
| H A D | ReservoirSamplerTest.cpp | 49 double Ps = 1.0 / Items.size(); in TEST() local 52 Sum += Ys * Ys / Ps; in TEST()
|
| /llvm-project-15.0.7/clang/test/SemaTemplate/ |
| H A D | deduction-guide.cpp | 8 template<Ts ...Ns, T *...Ps> A(X<Ps...>, Ts (*...qs)[Ns]);
|
| /llvm-project-15.0.7/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstPropagation.cpp | 471 Properties = Ps; in convertToProperty() 483 uint32_t Ps = properties(); in print() local 577 uint32_t Ps = properties(); in add() local 583 if (Ps != NewPs) { in add() 594 uint32_t Ps = properties(); in add() local 595 if (Ps == (Ps & Property)) in add() 597 Properties = Property & Ps; in add() 617 return Ps; in properties() 1743 uint32_t Ps = LS1.properties(); in evaluateEXTRACTr() local 2223 if (Ps & (P::Zero|P::NaN)) { in evaluate() [all …]
|
| H A D | HexagonPatterns.td | 560 def: Pat<(not I1:$Ps), (C2_not I1:$Ps)>; 561 def: Pat<(pnot V2I1:$Ps), (C2_not V2I1:$Ps)>; 562 def: Pat<(pnot V4I1:$Ps), (C2_not V4I1:$Ps)>; 563 def: Pat<(pnot V8I1:$Ps), (C2_not V8I1:$Ps)>; 564 def: Pat<(add I1:$Ps, -1), (C2_not I1:$Ps)>; 599 // op(Ps, op(Pt, Pu)) 605 // op(Ps, op(Pt, !Pu)) 807 def: Pat<(i1 (seteq I1:$Ps, (i1 -1))), (I1:$Ps)>; 808 def: Pat<(i1 (setne I1:$Ps, (i1 -1))), (C2_not I1:$Ps)>; 809 def: Pat<(i1 (seteq I1:$Ps, I1:$Pt)), (C2_xor I1:$Ps, (C2_not I1:$Pt))>; [all …]
|
| H A D | HexagonAsmPrinter.cpp | 366 MCOperand &Ps = Inst.getOperand(1); in HexagonProcessInstruction() local 368 MappedInst.addOperand(Ps); in HexagonProcessInstruction()
|
| /llvm-project-15.0.7/llvm/lib/Target/AArch64/ |
| H A D | AArch64SVEInstrInfo.td | 1570 (PUNPKLO_PP PPR:$Ps)>; 1572 (PUNPKHI_PP PPR:$Ps)>; 1574 (PUNPKLO_PP PPR:$Ps)>; 1576 (PUNPKHI_PP PPR:$Ps)>; 1578 (PUNPKLO_PP PPR:$Ps)>; 1580 (PUNPKHI_PP PPR:$Ps)>; 1582 (PUNPKLO_PP PPR:$Ps)>; 1584 (PUNPKHI_PP PPR:$Ps)>; 1587 (PUNPKLO_PP (PUNPKLO_PP PPR:$Ps))>; 1589 (PUNPKHI_PP (PUNPKLO_PP PPR:$Ps))>; [all …]
|
| H A D | SVEInstrFormats.td | 2844 SVEPseudo2Instr<Ps # _B, 1>; 2846 SVEPseudo2Instr<Ps # _H, 1>; 2848 SVEPseudo2Instr<Ps # _S, 1>; 2850 SVEPseudo2Instr<Ps # _D, 1>; 2864 SVEPseudo2Instr<Ps # _B, 1>; 2866 SVEPseudo2Instr<Ps # _H, 1>; 2868 SVEPseudo2Instr<Ps # _S, 1>; 2870 SVEPseudo2Instr<Ps # _D, 1>; 5453 def _B : SVEPseudo2Instr<Ps # _B, 1>, 5455 def _H : SVEPseudo2Instr<Ps # _H, 1>, [all …]
|
| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | loop-convert-basic.cpp | 302 S *Ps; in f() local 303 for (S::iterator It = Ps->begin(), E = Ps->end(); It != E; ++It) { in f() 463 S *Ps; in different_type() local 464 for (S::const_iterator It = Ps->begin(), E = Ps->end(); It != E; ++It) { in different_type()
|
| H A D | loop-convert-extra.cpp | 672 S *Ps; in f() local 673 for (S::iterator It = Ps->begin(); It != Ps->end(); ++It) { in f() 771 S *Ps; in different_type() local 772 for (S::const_iterator It = Ps->begin(); It != Ps->end(); ++It) { in different_type()
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | basic-parsers.h | 300 template <typename PA, typename... Ps> class AlternativesParser { 303 constexpr AlternativesParser(PA pa, Ps... ps) : ps_{pa, ps...} {} in AlternativesParser() 309 if constexpr (sizeof...(Ps) > 0) { in Parse() 327 if constexpr (J < sizeof...(Ps)) { in ParseRest() 333 const std::tuple<PA, Ps...> ps_; 336 template <typename... Ps> inline constexpr auto first(Ps... ps) { in first() 337 return AlternativesParser<Ps...>{ps...}; in first()
|
| /llvm-project-15.0.7/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | CheckerManager.h | 60 template <typename RET, typename... Ps> 61 class CheckerFn<RET(Ps...)> { 62 using Func = RET (*)(void *, Ps...); 71 RET operator()(Ps... ps) const { in operator()
|
| /llvm-project-15.0.7/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchersInternal.h | 1350 template <typename... Ps> class VariadicOperatorMatcher { 1352 VariadicOperatorMatcher(DynTypedMatcher::VariadicOperator Op, Ps &&... Params) 1353 : Op(Op), Params(std::forward<Ps>(Params)...) {} 1358 getMatchers<T>(std::index_sequence_for<Ps...>())) 1365 getMatchers<T>(std::index_sequence_for<Ps...>())) 1382 std::tuple<Ps...> Params; 1392 VariadicOperatorMatcher<Ms...> operator()(Ms &&... Ps) const { 1395 return VariadicOperatorMatcher<Ms...>(Op, std::forward<Ms>(Ps)...);
|
| /llvm-project-15.0.7/llvm/lib/Target/AMDGPU/ |
| H A D | VOP2Instructions.td | 1449 VOP2_Pseudo Ps = !cast<VOP2_Pseudo>(opName#"_e32"); 1450 let AsmString = asmName # !subst(", vcc", "", Ps.AsmOperands); 1458 VOP3_Pseudo Ps = !cast<VOP3_Pseudo>(opName#"_e64"); 1459 let AsmString = asmName # Ps.AsmOperands; 1467 VOP2_SDWA_Pseudo Ps = !cast<VOP2_SDWA_Pseudo>(opName#"_sdwa"); 1468 let AsmString = asmName # !subst(", vcc", "", Ps.AsmOperands); 1475 VOP2_SDWA_Pseudo Ps = !cast<VOP2_SDWA_Pseudo>(opName#"_sdwa"); 1476 let AsmString = asmName # !subst("vcc", "vcc_lo", Ps.AsmOperands); 1485 VOP2_SDWA_Pseudo Ps = !cast<VOP2_SDWA_Pseudo>(opName#"_sdwa"); 1486 let AsmString = asmName # Ps.AsmOperands;
|
| /llvm-project-15.0.7/clang/test/SemaCXX/ |
| H A D | coroutines-exp-namespace.cpp | 53 template <typename Promise, typename... Ps> 54 struct std::experimental::coroutine_traits<coro<Promise>, Ps...> {
|
| H A D | coroutines.cpp | 49 template <typename Promise, typename... Ps> 50 struct std::coroutine_traits<coro<Promise>, Ps...> {
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | RDFLiveness.cpp | 470 auto Ps = BA.Addr->members_if(DFG.IsCode<NodeAttrs::Phi>, DFG); in computePhiInfo() local 471 llvm::append_range(Phis, Ps); in computePhiInfo()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaTemplateDeduction.cpp | 142 ArrayRef<TemplateArgument> Ps, 2331 ArrayRef<TemplateArgument> Ps, in DeduceTemplateArguments() argument 2340 if (hasPackExpansionBeforeEnd(Ps)) in DeduceTemplateArguments() 2348 for (; hasTemplateArgumentForDeduction(Ps, ParamIdx); ++ParamIdx) { in DeduceTemplateArguments() 2349 const TemplateArgument &P = Ps[ParamIdx]; in DeduceTemplateArguments()
|
| H A D | SemaTemplate.cpp | 47 clang::getTemplateParamsRange(TemplateParameterList const * const *Ps, in getTemplateParamsRange() argument 50 return SourceRange(Ps[0]->getTemplateLoc(), Ps[N-1]->getRAngleLoc()); in getTemplateParamsRange()
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | arm_sve.td | 1272 def SVDUPQ_B16 : SInst<"svdupq[_n]_{d}", "Pssssssss", "Ps", MergeNone>; 1275 def SVDUP_N_B : SInst<"svdup[_n]_{d}", "Ps", "PcPsPiPl", MergeNone>;
|