Home
last modified time | relevance | path

Searched defs:RHS (Results 1 – 25 of 434) sorted by relevance

12345678910>>...18

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DKnownBits.cpp22 const KnownBits &LHS, const KnownBits &RHS, in computeForAddCarry()
51 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry) { in computeForAddCarry()
58 const KnownBits &LHS, KnownBits RHS) { in computeForAddSub()
117 KnownBits KnownBits::umax(const KnownBits &LHS, const KnownBits &RHS) { in umax()
135 KnownBits KnownBits::umin(const KnownBits &LHS, const KnownBits &RHS) { in umin()
141 KnownBits KnownBits::smax(const KnownBits &LHS, const KnownBits &RHS) { in smax()
154 KnownBits KnownBits::smin(const KnownBits &LHS, const KnownBits &RHS) { in smin()
167 KnownBits KnownBits::shl(const KnownBits &LHS, const KnownBits &RHS) { in shl()
221 KnownBits KnownBits::lshr(const KnownBits &LHS, const KnownBits &RHS) { in lshr()
274 KnownBits KnownBits::ashr(const KnownBits &LHS, const KnownBits &RHS) { in ashr()
[all …]
H A DZ3Solver.cpp247 const llvm::fltSemantics &RHS) { in areEquivalent()
349 SMTExprRef mkBVAdd(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVAdd()
355 SMTExprRef mkBVSub(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSub()
361 SMTExprRef mkBVMul(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVMul()
367 SMTExprRef mkBVSRem(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSRem()
373 SMTExprRef mkBVURem(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVURem()
379 SMTExprRef mkBVSDiv(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSDiv()
385 SMTExprRef mkBVUDiv(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVUDiv()
391 SMTExprRef mkBVShl(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVShl()
397 SMTExprRef mkBVAshr(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVAshr()
[all …]
H A DSmallPtrSet.cpp144 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) { in CopyFrom()
170 void SmallPtrSetImplBase::CopyHelper(const SmallPtrSetImplBase &RHS) { in CopyHelper()
182 SmallPtrSetImplBase &&RHS) { in MoveFrom()
189 SmallPtrSetImplBase &&RHS) { in MoveHelper()
213 void SmallPtrSetImplBase::swap(SmallPtrSetImplBase &RHS) { in swap()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DSmallString.h50 void assign(StringRef RHS) { in assign()
67 void append(StringRef RHS) { in append()
91 bool equals(StringRef RHS) const { in equals()
96 bool equals_lower(StringRef RHS) const { in equals_lower()
102 int compare(StringRef RHS) const { in compare()
107 int compare_lower(StringRef RHS) const { in compare_lower()
113 int compare_numeric(StringRef RHS) const { in compare_numeric()
H A DTwine.h160 Child RHS; variable
174 explicit Twine(const Twine &LHS, const Twine &RHS) in Twine()
182 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind) in Twine()
357 /*implicit*/ Twine(const char *LHS, const StringRef &RHS) in Twine()
365 /*implicit*/ Twine(const StringRef &LHS, const char *RHS) in Twine()
388 Child LHS, RHS; in utohexstr() local
H A DAPFloat.h743 Storage(const Storage &RHS) { in Storage()
755 Storage(Storage &&RHS) { in Storage() function
852 cmpResult compareAbsoluteValue(const APFloat &RHS) const { in compareAbsoluteValue()
972 opStatus add(const APFloat &RHS, roundingMode RM) { in add()
981 opStatus subtract(const APFloat &RHS, roundingMode RM) { in subtract()
990 opStatus multiply(const APFloat &RHS, roundingMode RM) { in multiply()
999 opStatus divide(const APFloat &RHS, roundingMode RM) { in divide()
1008 opStatus remainder(const APFloat &RHS) { in remainder()
1017 opStatus mod(const APFloat &RHS) { in mod()
1093 void copySign(const APFloat &RHS) { in copySign()
[all …]
H A DSparseBitVector.h397 bool end = false):BitVector(RHS) { in BitVector() argument
445 SparseBitVector(const SparseBitVector &RHS) in SparseBitVector()
447 SparseBitVector(SparseBitVector &&RHS) in SparseBitVector() function
636 bool intersectWithComplement(const SparseBitVector &RHS) { in intersectWithComplement()
681 bool intersectWithComplement(const SparseBitVector<ElementSize> *RHS) const { in intersectWithComplement()
738 bool intersects(const SparseBitVector<ElementSize> *RHS) const { in intersects()
743 bool intersects(const SparseBitVector<ElementSize> &RHS) const { in intersects()
772 bool contains(const SparseBitVector<ElementSize> &RHS) const { in contains()
H A DSmallBitVector.h153 SmallBitVector(const SmallBitVector &RHS) { in SmallBitVector()
160 SmallBitVector(SmallBitVector &&RHS) : X(RHS.X) { in SmallBitVector() function
473 bool anyCommon(const SmallBitVector &RHS) const { in anyCommon()
525 SmallBitVector &reset(const SmallBitVector &RHS) { in reset()
539 bool test(const SmallBitVector &RHS) const { in test()
625 void swap(SmallBitVector &RHS) { in swap()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineInternal.h253 bool willNotOverflowSignedAdd(const Value *LHS, const Value *RHS, in willNotOverflowSignedAdd()
259 bool willNotOverflowUnsignedAdd(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedAdd()
265 bool willNotOverflowAdd(const Value *LHS, const Value *RHS, in willNotOverflowAdd()
271 bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS, in willNotOverflowSignedSub()
277 bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedSub()
283 bool willNotOverflowSub(const Value *LHS, const Value *RHS, in willNotOverflowSub()
289 bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS, in willNotOverflowSignedMul()
295 bool willNotOverflowUnsignedMul(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedMul()
301 bool willNotOverflowMul(const Value *LHS, const Value *RHS, in willNotOverflowMul()
308 const Value *RHS, const Instruction &CxtI, in willNotOverflow()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DCheckedArithmetic.h48 checkedAdd(T LHS, T RHS) { in checkedAdd()
57 checkedSub(T LHS, T RHS) { in checkedSub()
66 checkedMul(T LHS, T RHS) { in checkedMul()
86 checkedAddUnsigned(T LHS, T RHS) { in checkedAddUnsigned()
95 checkedMulUnsigned(T LHS, T RHS) { in checkedMulUnsigned()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DNoFolder.h53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const override { in CreateFAdd()
66 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const override { in CreateFSub()
79 Instruction *CreateFMul(Constant *LHS, Constant *RHS) const override { in CreateFMul()
97 Instruction *CreateFDiv(Constant *LHS, Constant *RHS) const override { in CreateFDiv()
101 Instruction *CreateURem(Constant *LHS, Constant *RHS) const override { in CreateURem()
105 Instruction *CreateSRem(Constant *LHS, Constant *RHS) const override { in CreateSRem()
109 Instruction *CreateFRem(Constant *LHS, Constant *RHS) const override { in CreateFRem()
135 Instruction *CreateAnd(Constant *LHS, Constant *RHS) const override { in CreateAnd()
139 Instruction *CreateOr(Constant *LHS, Constant *RHS) const override { in CreateOr()
143 Instruction *CreateXor(Constant *LHS, Constant *RHS) const override { in CreateXor()
[all …]
H A DConstantFolder.h43 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const override { in CreateFAdd()
52 Constant *CreateFSub(Constant *LHS, Constant *RHS) const override { in CreateFSub()
61 Constant *CreateFMul(Constant *LHS, Constant *RHS) const override { in CreateFMul()
75 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const override { in CreateFDiv()
79 Constant *CreateURem(Constant *LHS, Constant *RHS) const override { in CreateURem()
83 Constant *CreateSRem(Constant *LHS, Constant *RHS) const override { in CreateSRem()
87 Constant *CreateFRem(Constant *LHS, Constant *RHS) const override { in CreateFRem()
106 Constant *CreateAnd(Constant *LHS, Constant *RHS) const override { in CreateAnd()
110 Constant *CreateOr(Constant *LHS, Constant *RHS) const override { in CreateOr()
114 Constant *CreateXor(Constant *LHS, Constant *RHS) const override { in CreateXor()
[all …]
H A DMatrixBuilder.h38 Value *RHS) { in splatScalarOperandIfNeeded()
161 Value *CreateAdd(Value *LHS, Value *RHS) { in CreateAdd()
186 Value *CreateSub(Value *LHS, Value *RHS) { in CreateSub()
211 Value *CreateScalarMultiply(Value *LHS, Value *RHS) { in CreateScalarMultiply()
220 Value *CreateScalarDiv(Value *LHS, Value *RHS, bool IsUnsigned) { in CreateScalarDiv()
H A DFixedPointBuilder.h227 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateAdd()
253 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateSub()
287 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateMul()
315 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateDiv()
341 Value *CreateShl(Value *LHS, const FixedPointSemantics &LHSSema, Value *RHS) { in CreateShl()
362 Value *CreateShr(Value *LHS, const FixedPointSemantics &LHSSema, Value *RHS) { in CreateShr()
374 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateEQ()
389 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateNE()
404 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateLT()
420 Value *RHS, const FixedPointSemantics &RHSSema) { in CreateLE()
[all …]
H A DValueHandle.h39 ValueHandleBase(const ValueHandleBase &RHS) in ValueHandleBase()
42 ValueHandleBase(HandleBaseKind Kind, const ValueHandleBase &RHS) in ValueHandleBase()
148 WeakVH(const WeakVH &RHS) in WeakVH()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetFolder.h53 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const override { in CreateFAdd()
60 Constant *CreateFSub(Constant *LHS, Constant *RHS) const override { in CreateFSub()
67 Constant *CreateFMul(Constant *LHS, Constant *RHS) const override { in CreateFMul()
78 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const override { in CreateFDiv()
81 Constant *CreateURem(Constant *LHS, Constant *RHS) const override { in CreateURem()
84 Constant *CreateSRem(Constant *LHS, Constant *RHS) const override { in CreateSRem()
87 Constant *CreateFRem(Constant *LHS, Constant *RHS) const override { in CreateFRem()
102 Constant *CreateAnd(Constant *LHS, Constant *RHS) const override { in CreateAnd()
105 Constant *CreateOr(Constant *LHS, Constant *RHS) const override { in CreateOr()
108 Constant *CreateXor(Constant *LHS, Constant *RHS) const override { in CreateXor()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h55 LExpr *LHS, *RHS; variable
58 BinOp(LExpr *LHS, LExpr *RHS, Opcode Code) : LExpr(Code), LHS(LHS), RHS(RHS) {} in BinOp()
70 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {} in And()
77 Or(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::Or) {} in Or()
98 bool LExpr::implies(const LExpr *RHS) const { in implies()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCExpr.h523 static const MCBinaryExpr *createAdd(const MCExpr *LHS, const MCExpr *RHS, in createAdd()
528 static const MCBinaryExpr *createAnd(const MCExpr *LHS, const MCExpr *RHS, in createAnd()
533 static const MCBinaryExpr *createDiv(const MCExpr *LHS, const MCExpr *RHS, in createDiv()
538 static const MCBinaryExpr *createEQ(const MCExpr *LHS, const MCExpr *RHS, in createEQ()
543 static const MCBinaryExpr *createGT(const MCExpr *LHS, const MCExpr *RHS, in createGT()
548 static const MCBinaryExpr *createGTE(const MCExpr *LHS, const MCExpr *RHS, in createGTE()
553 static const MCBinaryExpr *createLAnd(const MCExpr *LHS, const MCExpr *RHS, in createLAnd()
558 static const MCBinaryExpr *createLOr(const MCExpr *LHS, const MCExpr *RHS, in createLOr()
563 static const MCBinaryExpr *createLT(const MCExpr *LHS, const MCExpr *RHS, in createLT()
568 static const MCBinaryExpr *createLTE(const MCExpr *LHS, const MCExpr *RHS, in createLTE()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConv.h93 const llvm::SMTExprRef &RHS, in fromBinOp()
171 const llvm::APFloat::fltCategory &RHS) { in fromFloatSpecialBinOp()
204 const llvm::SMTExprRef &RHS) { in fromFloatBinOp()
348 BinaryOperator::Opcode Op, const llvm::SMTExprRef &RHS, in getBinExpr()
394 llvm::SMTExprRef RHS = in getSymBinExpr() local
404 llvm::SMTExprRef RHS = in getSymBinExpr() local
412 llvm::SMTExprRef RHS = in getSymBinExpr() local
537 llvm::SMTExprRef RHS = getBinExpr(Solver, Ctx, Exp, SymTy, in getRangeExpr() local
573 llvm::SMTExprRef &RHS, QualType &LTy, in doTypeConversion()
650 T &RHS, QualType &RTy) { in doIntTypeConversion()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/TextAPI/
H A DInterfaceFile.cpp35 lower_bound(Container, Target_, [](const Target &LHS, const Target &RHS) { in addEntry()
64 Target RHS) { return LHS.first < RHS; }); in addParentUmbrella()
77 Target RHS) { return LHS.first < RHS; }); in addUUID() argument
124 const std::shared_ptr<InterfaceFile> &RHS) { in addDocument()
158 const std::shared_ptr<InterfaceFile> RHS) { in operator ==()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/
H A DRewriteRope.cpp405 RopePieceBTreeInterior(RopePieceBTreeNode *LHS, RopePieceBTreeNode *RHS) in RopePieceBTreeInterior()
492 if (RopePieceBTreeNode *RHS = getChild(i)->split(Offset-ChildOffset)) in split() local
522 if (RopePieceBTreeNode *RHS = getChild(i)->insert(Offset-ChildOffs, R)) in insert() local
531 RopePieceBTreeInterior::HandleChildPiece(unsigned i, RopePieceBTreeNode *RHS) { in HandleChildPiece()
725 RopePieceBTree::RopePieceBTree(const RopePieceBTree &RHS) { in RopePieceBTree()
749 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() local
753 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() local
759 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in erase() local
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/InstCombine/
H A DInstCombiner.h163 static bool isSignBitCheck(ICmpInst::Predicate Pred, const APInt &RHS, in isSignBitCheck()
483 const Value *RHS, in computeOverflowForUnsignedMul()
488 OverflowResult computeOverflowForSignedMul(const Value *LHS, const Value *RHS, in computeOverflowForSignedMul()
494 const Value *RHS, in computeOverflowForUnsignedAdd()
499 OverflowResult computeOverflowForSignedAdd(const Value *LHS, const Value *RHS, in computeOverflowForSignedAdd()
505 const Value *RHS, in computeOverflowForUnsignedSub()
510 OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS, in computeOverflowForSignedSub()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DNaryReassociate.cpp278 Value *RHS = nullptr; in matchAndReassociateMinOrMax() local
376 Value *LHS = AO->getOperand(0), *RHS = AO->getOperand(1); in tryReassociateGEPAtIndex() local
393 Value *RHS, Type *IndexedType) { in tryReassociateGEPAtIndex()
462 Value *LHS = I->getOperand(0), *RHS = I->getOperand(1); in tryReassociateBinaryOp() local
473 Instruction *NaryReassociatePass::tryReassociateBinaryOp(Value *LHS, Value *RHS, in tryReassociateBinaryOp()
498 Value *RHS, in tryReassociatedBinaryOp()
536 const SCEV *RHS) { in getBinarySCEV()
596 Value *LHS, Value *RHS) { in tryReassociateMinOrMax()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DThreadSafetyLogical.cpp19 static bool implies(const LExpr *LHS, bool LNeg, const LExpr *RHS, bool RNeg) { in implies()
105 bool implies(const LExpr *LHS, const LExpr *RHS) { in implies()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dselftest.h390 #define ASSERT_GT(LHS, RHS) \ argument
396 #define ASSERT_GT_AT(LOC, LHS, RHS) \ argument
409 #define ASSERT_LT(LHS, RHS) \ argument
415 #define ASSERT_LT_AT(LOC, LHS, RHS) \ argument

12345678910>>...18