/third_party/boost/boost/geometry/index/ |
D | predicates.hpp | 398 template <typename Pred1, typename Pred2> inline 401 boost::tuples::cons<Pred2, boost::tuples::null_type> 403 operator&&(Pred1 const& p1, Pred2 const& p2) in operator &&() 410 bt::cons< Pred1, bt::cons<Pred2, bt::null_type> > in operator &&() 411 ( p1, bt::cons<Pred2, bt::null_type>(p2, bt::null_type()) ); in operator &&()
|
/third_party/boost/boost/numeric/conversion/detail/ |
D | converter.hpp | 311 typedef GT_HiT<Traits> Pred2 ; typedef 313 typedef generic_range_checker<Traits,Pred1,Pred2,OverflowHandler> Normal ; 324 typedef GT_HiT <Traits> Pred2 ; typedef 326 typedef generic_range_checker<Traits,Pred1,Pred2,OverflowHandler> ChoiceA ; 375 typedef GE_SuccHiT <Traits> Pred2 ; typedef 381 typedef generic_range_checker<Traits,Pred1,Pred2,OverflowHandler> ToZero ; 384 typedef generic_range_checker<Traits,Pred6,Pred2,OverflowHandler> ToNegInf ; 397 typedef GT_HiT<Traits> Pred2 ; typedef 399 typedef generic_range_checker<Traits,Pred1,Pred2,OverflowHandler> Normal ;
|
/third_party/boost/boost/algorithm/string/ |
D | classification.hpp | 240 const predicate_facade<Pred2T>& Pred2 ) in operator &&() argument 247 *static_cast<const Pred2T*>(&Pred2) ); in operator &&() 264 const predicate_facade<Pred2T>& Pred2 ) in operator ||() argument 271 *static_cast<const Pred2T*>(&Pred2)); in operator ||()
|
/third_party/boost/boost/algorithm/string/detail/ |
D | classification.hpp | 285 pred_andF( Pred1T Pred1, Pred2T Pred2 ) : in pred_andF() 286 m_Pred1(Pred1), m_Pred2(Pred2) {} in pred_andF() 310 pred_orF( Pred1T Pred1, Pred2T Pred2 ) : in pred_orF() 311 m_Pred1(Pred1), m_Pred2(Pred2) {} in pred_orF()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | BasicBlockUtils.cpp | 1001 BasicBlock *Pred2 = nullptr; in GetIfCondition() local 1007 Pred2 = SomePHI->getIncomingBlock(1); in GetIfCondition() 1015 Pred2 = *PI++; in GetIfCondition() 1023 BranchInst *Pred2Br = dyn_cast<BranchInst>(Pred2->getTerminator()); in GetIfCondition() 1037 std::swap(Pred1, Pred2); in GetIfCondition() 1045 if (!Pred2->getSinglePredecessor()) in GetIfCondition() 1051 Pred1Br->getSuccessor(1) == Pred2) { in GetIfCondition() 1053 IfFalse = Pred2; in GetIfCondition() 1054 } else if (Pred1Br->getSuccessor(0) == Pred2 && in GetIfCondition() 1056 IfTrue = Pred2; in GetIfCondition() [all …]
|
/third_party/boost/boost/spirit/home/karma/operator/ |
D | sequence.hpp | 135 , typename Attribute, typename Pred1, typename Pred2> 137 , Delimiter const& d, Attribute& attr_, Pred1, Pred2) const in generate_impl()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instructions.cpp | 3755 bool CmpInst::isImpliedTrueByMatchingCmp(Predicate Pred1, Predicate Pred2) { in isImpliedTrueByMatchingCmp() argument 3758 if (Pred1 == Pred2) in isImpliedTrueByMatchingCmp() 3766 return Pred2 == ICMP_UGE || Pred2 == ICMP_ULE || Pred2 == ICMP_SGE || in isImpliedTrueByMatchingCmp() 3767 Pred2 == ICMP_SLE; in isImpliedTrueByMatchingCmp() 3769 return Pred2 == ICMP_NE || Pred2 == ICMP_UGE; in isImpliedTrueByMatchingCmp() 3771 return Pred2 == ICMP_NE || Pred2 == ICMP_ULE; in isImpliedTrueByMatchingCmp() 3773 return Pred2 == ICMP_NE || Pred2 == ICMP_SGE; in isImpliedTrueByMatchingCmp() 3775 return Pred2 == ICMP_NE || Pred2 == ICMP_SLE; in isImpliedTrueByMatchingCmp() 3780 bool CmpInst::isImpliedFalseByMatchingCmp(Predicate Pred1, Predicate Pred2) { in isImpliedFalseByMatchingCmp() argument 3781 return isImpliedTrueByMatchingCmp(Pred1, getInversePredicate(Pred2)); in isImpliedFalseByMatchingCmp()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCInstrInfo.h | 344 ArrayRef<MachineOperand> Pred2) const override;
|
D | PPCInstrInfo.cpp | 1524 ArrayRef<MachineOperand> Pred2) const { in SubsumesPredicate() 1526 assert(Pred2.size() == 2 && "Invalid PPC second predicate"); in SubsumesPredicate() 1530 if (Pred2[1].getReg() == PPC::CTR8 || Pred2[1].getReg() == PPC::CTR) in SubsumesPredicate() 1534 if (Pred1[1].getReg() != Pred2[1].getReg()) in SubsumesPredicate() 1538 PPC::Predicate P2 = (PPC::Predicate) Pred2[0].getImm(); in SubsumesPredicate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonInstrInfo.h | 235 ArrayRef<MachineOperand> Pred2) const override;
|
D | HexagonInstrInfo.cpp | 1614 ArrayRef<MachineOperand> Pred2) const { in SubsumesPredicate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | JumpThreading.cpp | 2661 BasicBlock *Pred1, *Pred2; in ProcessGuards() local 2668 Pred2 = *PI++; in ProcessGuards() 2671 if (Pred1 == Pred2) in ProcessGuards() 2677 if (!Parent || Parent != Pred2->getSinglePredecessor()) in ProcessGuards()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMBaseInstrInfo.h | 159 ArrayRef<MachineOperand> Pred2) const override;
|
D | ARMBaseInstrInfo.cpp | 520 ArrayRef<MachineOperand> Pred2) const { in SubsumesPredicate() 521 if (Pred1.size() > 2 || Pred2.size() > 2) in SubsumesPredicate() 525 ARMCC::CondCodes CC2 = (ARMCC::CondCodes)Pred2[0].getImm(); in SubsumesPredicate()
|
/third_party/boost/libs/geometry/doc/index/rtree/ |
D | query.qbk | 188 …predicates in one query by connecting them with `operator&&` e.g. `Pred1 && Pred2 && Pred3 && ...`.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | InstrTypes.h | 959 static bool isImpliedTrueByMatchingCmp(Predicate Pred1, Predicate Pred2); 963 static bool isImpliedFalseByMatchingCmp(Predicate Pred1, Predicate Pred2);
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetInstrInfo.h | 1327 ArrayRef<MachineOperand> Pred2) const { in SubsumesPredicate() argument
|
/third_party/boost/libs/contract/doc/ |
D | extras.qbk | 183 ).template else_if<Pred2>( // Optional. 191 Where `Pred1`, `Pred2`, ... are nullary boolean meta-functions and `t1`, `t2`, ..., `e` are nullary… 193 …r `t2()`, ..., or `e()` depending on which meta-function `Pred1::value`, `Pred2::value`, ... is st… 194 …o be actually called at run-time (so only if the related `Pred1::value`, `Pred2::value`, ... are r…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 80 CmpInst::Predicate ExpectedPred, Pred1, Pred2; in foldSelectWithBinaryOp() local 104 m_ICmp(Pred2, m_Value(X), m_Value(Y)))) || in foldSelectWithBinaryOp() 105 Pred1 != Pred2 || Pred1 != ExpectedPred) in foldSelectWithBinaryOp()
|