Home
last modified time | relevance | path

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

12345678910

/external/llvm/include/llvm/IR/
DNoFolder.h47 Instruction *CreateNSWAdd(Constant *LHS, Constant *RHS) const { in CreateNSWAdd()
50 Instruction *CreateNUWAdd(Constant *LHS, Constant *RHS) const { in CreateNUWAdd()
53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd()
63 Instruction *CreateNSWSub(Constant *LHS, Constant *RHS) const { in CreateNSWSub()
66 Instruction *CreateNUWSub(Constant *LHS, Constant *RHS) const { in CreateNUWSub()
69 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub()
79 Instruction *CreateNSWMul(Constant *LHS, Constant *RHS) const { in CreateNSWMul()
82 Instruction *CreateNUWMul(Constant *LHS, Constant *RHS) const { in CreateNUWMul()
85 Instruction *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul()
94 Instruction *CreateExactUDiv(Constant *LHS, Constant *RHS) const { in CreateExactUDiv()
[all …]
DConstantFolder.h38 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd()
45 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub()
52 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul()
63 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const { in CreateFDiv()
66 Constant *CreateURem(Constant *LHS, Constant *RHS) const { in CreateURem()
69 Constant *CreateSRem(Constant *LHS, Constant *RHS) const { in CreateSRem()
72 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem()
87 Constant *CreateAnd(Constant *LHS, Constant *RHS) const { in CreateAnd()
90 Constant *CreateOr(Constant *LHS, Constant *RHS) const { in CreateOr()
93 Constant *CreateXor(Constant *LHS, Constant *RHS) const { in CreateXor()
[all …]
DValueHandle.h73 ValueHandleBase(HandleBaseKind Kind, const ValueHandleBase &RHS) in ValueHandleBase()
149 WeakVH(const WeakVH &RHS) in WeakVH()
/external/llvm/include/llvm/ADT/
DSmallString.h57 void assign(StringRef RHS) { in assign()
63 void assign(const SmallVectorImpl<char> &RHS) { in assign()
84 void append(StringRef RHS) { in append()
89 void append(const SmallVectorImpl<char> &RHS) { in append()
99 bool equals(StringRef RHS) const { in equals()
104 bool equals_lower(StringRef RHS) const { in equals_lower()
110 int compare(StringRef RHS) const { in compare()
115 int compare_lower(StringRef RHS) const { in compare_lower()
121 int compare_numeric(StringRef RHS) const { in compare_numeric()
DAPInt.h764 APInt LLVM_ATTRIBUTE_UNUSED_RESULT And(const APInt &RHS) const { in And()
786 APInt LLVM_ATTRIBUTE_UNUSED_RESULT Or(const APInt &RHS) const { in Or()
808 APInt LLVM_ATTRIBUTE_UNUSED_RESULT Xor(const APInt &RHS) const { in Xor()
984 bool eq(const APInt &RHS) const { return (*this) == RHS; } in eq()
1008 bool ne(const APInt &RHS) const { return !((*this) == RHS); } in ne()
1024 bool ult(uint64_t RHS) const { return ult(APInt(getBitWidth(), RHS)); } in ult()
1040 bool slt(uint64_t RHS) const { return slt(APInt(getBitWidth(), RHS)); } in slt()
1048 bool ule(const APInt &RHS) const { return ult(RHS) || eq(RHS); } in ule()
1056 bool ule(uint64_t RHS) const { return ule(APInt(getBitWidth(), RHS)); } in ule()
1064 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); } in sle()
[all …]
DSmallBitVector.h150 SmallBitVector(const SmallBitVector &RHS) { in SmallBitVector()
157 SmallBitVector(SmallBitVector &&RHS) : X(RHS.X) { in SmallBitVector() function
387 bool anyCommon(const SmallBitVector &RHS) const { in anyCommon()
429 SmallBitVector &reset(const SmallBitVector &RHS) { in reset()
444 bool test(const SmallBitVector &RHS) const { in test()
516 void swap(SmallBitVector &RHS) { in swap()
600 swap(llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) { in swap()
DAPSInt.h209 APSInt LLVM_ATTRIBUTE_UNUSED_RESULT And(const APSInt& RHS) const { in And()
217 APSInt LLVM_ATTRIBUTE_UNUSED_RESULT Or(const APSInt& RHS) const { in Or()
226 APSInt LLVM_ATTRIBUTE_UNUSED_RESULT Xor(const APSInt& RHS) const { in Xor()
DBitVector.h90 BitVector(const BitVector &RHS) : Size(RHS.size()) { in BitVector()
102 BitVector(BitVector &&RHS) in BitVector() function
343 bool anyCommon(const BitVector &RHS) const { in anyCommon()
396 BitVector &reset(const BitVector &RHS) { in reset()
407 bool test(const BitVector &RHS) const { in test()
476 void swap(BitVector &RHS) { in swap()
590 swap(llvm::BitVector &LHS, llvm::BitVector &RHS) { in swap()
DStringRef.h135 bool equals(StringRef RHS) const { in equals()
141 bool equals_lower(StringRef RHS) const { in equals_lower()
147 int compare(StringRef RHS) const { in compare()
/external/llvm/include/llvm/Analysis/
DTargetFolder.h54 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd()
61 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub()
68 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul()
77 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const { in CreateFDiv()
80 Constant *CreateURem(Constant *LHS, Constant *RHS) const { in CreateURem()
83 Constant *CreateSRem(Constant *LHS, Constant *RHS) const { in CreateSRem()
86 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem()
99 Constant *CreateAnd(Constant *LHS, Constant *RHS) const { in CreateAnd()
102 Constant *CreateOr(Constant *LHS, Constant *RHS) const { in CreateOr()
105 Constant *CreateXor(Constant *LHS, Constant *RHS) const { in CreateXor()
[all …]
/external/compiler-rt/lib/ubsan/
Dubsan_handlers.cc68 T RHS) { in HandleIntegerOverflow()
80 ValueHandle LHS, ValueHandle RHS) { in __ubsan_handle_add_overflow()
85 ValueHandle RHS) { in __ubsan_handle_add_overflow_abort()
91 ValueHandle LHS, ValueHandle RHS) { in __ubsan_handle_sub_overflow()
96 ValueHandle RHS) { in __ubsan_handle_sub_overflow_abort()
102 ValueHandle LHS, ValueHandle RHS) { in __ubsan_handle_mul_overflow()
107 ValueHandle RHS) { in __ubsan_handle_mul_overflow_abort()
135 ValueHandle LHS, ValueHandle RHS) { in __ubsan_handle_divrem_overflow()
151 ValueHandle RHS) { in __ubsan_handle_divrem_overflow_abort()
158 ValueHandle RHS) { in __ubsan_handle_shift_out_of_bounds()
[all …]
/external/clang/include/clang/Analysis/Analyses/
DThreadSafetyLogical.h56 LExpr *LHS, *RHS; variable
59 BinOp(LExpr *LHS, LExpr *RHS, Opcode Code) : LExpr(Code), LHS(LHS), RHS(RHS) {} in BinOp()
71 And(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::And) {} in And()
78 Or(LExpr *LHS, LExpr *RHS) : BinOp(LHS, RHS, LExpr::Or) {} in Or()
99 bool LExpr::implies(const LExpr *RHS) const { in implies()
/external/llvm/include/llvm/MC/
DMCExpr.h409 const MCExpr *LHS, *RHS; variable
420 static const MCBinaryExpr *CreateAdd(const MCExpr *LHS, const MCExpr *RHS, in CreateAdd()
424 static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS, in CreateAnd()
428 static const MCBinaryExpr *CreateDiv(const MCExpr *LHS, const MCExpr *RHS, in CreateDiv()
432 static const MCBinaryExpr *CreateEQ(const MCExpr *LHS, const MCExpr *RHS, in CreateEQ()
436 static const MCBinaryExpr *CreateGT(const MCExpr *LHS, const MCExpr *RHS, in CreateGT()
440 static const MCBinaryExpr *CreateGTE(const MCExpr *LHS, const MCExpr *RHS, in CreateGTE()
444 static const MCBinaryExpr *CreateLAnd(const MCExpr *LHS, const MCExpr *RHS, in CreateLAnd()
448 static const MCBinaryExpr *CreateLOr(const MCExpr *LHS, const MCExpr *RHS, in CreateLOr()
452 static const MCBinaryExpr *CreateLT(const MCExpr *LHS, const MCExpr *RHS, in CreateLT()
[all …]
/external/clang/lib/Rewrite/Core/
DRewriteRope.cpp399 RopePieceBTreeInterior(RopePieceBTreeNode *LHS, RopePieceBTreeNode *RHS) in RopePieceBTreeInterior()
485 if (RopePieceBTreeNode *RHS = getChild(i)->split(Offset-ChildOffset)) in split() local
515 if (RopePieceBTreeNode *RHS = getChild(i)->insert(Offset-ChildOffs, R)) in insert() local
524 RopePieceBTreeInterior::HandleChildPiece(unsigned i, RopePieceBTreeNode *RHS) { in HandleChildPiece()
718 RopePieceBTree::RopePieceBTree(const RopePieceBTree &RHS) { in RopePieceBTree()
741 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() local
745 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() local
751 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in erase() local
/external/clang/test/SemaCXX/
Dwarn-self-assign.cpp22 #define RHS a in false_positives() macro
28 LHS OP RHS; in false_positives() local
/external/llvm/lib/Support/
DSmallPtrSet.cpp219 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) { in CopyFrom()
256 SmallPtrSetImplBase &&RHS) { in MoveFrom()
283 void SmallPtrSetImplBase::swap(SmallPtrSetImplBase &RHS) { in swap()
/external/clang/lib/Analysis/
DThreadSafetyLogical.cpp20 static bool implies(const LExpr *LHS, bool LNeg, const LExpr *RHS, bool RNeg) { in implies()
106 bool implies(const LExpr *LHS, const LExpr *RHS) { in implies()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp89 static Value *getNewICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, in getNewICmpValue()
101 Value *LHS, Value *RHS, in getFCmpValue()
332 Value *InstCombiner::FoldLogicalPlusAnd(Value *LHS, Value *RHS, in FoldLogicalPlusAnd()
557 ICmpInst *LHS, ICmpInst *RHS, in foldLogOpOfMaskedICmpsHelper()
668 static Value* foldLogOpOfMaskedICmps(ICmpInst *LHS, ICmpInst *RHS, bool IsAnd, in foldLogOpOfMaskedICmps()
791 Value *InstCombiner::FoldAndOfICmps(ICmpInst *LHS, ICmpInst *RHS) { in FoldAndOfICmps()
1027 Value *InstCombiner::FoldAndOfFCmps(FCmpInst *LHS, FCmpInst *RHS) { in FoldAndOfFCmps()
1288 if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1)) in visitAnd() local
1295 if (FCmpInst *RHS = dyn_cast<FCmpInst>(I.getOperand(1))) in visitAnd() local
1318 if (ICmpInst *RHS = dyn_cast<ICmpInst>(Op1COp)) in visitAnd() local
[all …]
/external/clang/include/clang/Tooling/
DRefactoring.h50 bool overlapsWith(Range RHS) const { in overlapsWith()
55 bool contains(Range RHS) const { in contains()
/external/clang/test/Index/
Dcxx-operator-overload.cpp13 Cls Cls::operator +(const Cls &RHS) { while (1) {} } in operator +()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
DAMDILISelLowering.cpp494 SDValue RHS = Op.getOperand(1); in LowerSDIV24() local
575 SDValue RHS = Op.getOperand(1); in LowerSDIV32() local
654 SDValue RHS = DAG.getSExtOrTrunc(Op.getOperand(1), DL, INTTY); in LowerSREM8() local
672 SDValue RHS = DAG.getSExtOrTrunc(Op.getOperand(1), DL, INTTY); in LowerSREM16() local
684 SDValue RHS = Op.getOperand(1); in LowerSREM32() local
/external/mesa3d/src/gallium/drivers/radeon/
DAMDILISelLowering.cpp494 SDValue RHS = Op.getOperand(1); in LowerSDIV24() local
575 SDValue RHS = Op.getOperand(1); in LowerSDIV32() local
654 SDValue RHS = DAG.getSExtOrTrunc(Op.getOperand(1), DL, INTTY); in LowerSREM8() local
672 SDValue RHS = DAG.getSExtOrTrunc(Op.getOperand(1), DL, INTTY); in LowerSREM16() local
684 SDValue RHS = Op.getOperand(1); in LowerSREM32() local
DR600ISelLowering.cpp337 SDValue RHS = Op.getOperand(3); in LowerBR_CC() local
393 SDValue RHS = Op.getOperand(1); in LowerSELECT_CC() local
503 SDValue RHS = Op.getOperand(1); in LowerSETCC() local
/external/llvm/lib/CodeGen/
DMachineModuleInfoImpls.cpp27 static int SortSymbolPair(const void *LHS, const void *RHS) { in SortSymbolPair()
/external/llvm/lib/Transforms/Utils/
DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, in getICmpValue()

12345678910