/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | NoFolder.h | 47 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 …]
|
D | ConstantFolder.h | 38 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 …]
|
D | TargetFolder.h | 54 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/libcxx/test/std/experimental/filesystem/class.path/path.member/ |
D | path.append.pass.cpp | 97 Str RHS(R); in doAppendSourceAllocTest() local 107 StrView RHS(R); in doAppendSourceAllocTest() local 117 Ptr RHS(R); in doAppendSourceAllocTest() local 126 Ptr RHS(R); in doAppendSourceAllocTest() local 141 InputIter RHS(R); in doAppendSourceAllocTest() local 151 InputIter RHS(R); in doAppendSourceAllocTest() local 176 Str RHS(R); in doAppendSourceTest() local 183 Str RHS(R); in doAppendSourceTest() local 191 StrView RHS(R); in doAppendSourceTest() local 198 StrView RHS(R); in doAppendSourceTest() local [all …]
|
D | path.concat.pass.cpp | 98 Str RHS(R); in doConcatSourceAllocTest() local 108 StrView RHS(R); in doConcatSourceAllocTest() local 118 Ptr RHS(R); in doConcatSourceAllocTest() local 127 Ptr RHS(R); in doConcatSourceAllocTest() local 142 InputIter RHS(R); in doConcatSourceAllocTest() local 152 InputIter RHS(R); in doConcatSourceAllocTest() local 177 Str RHS(R); in doConcatSourceTest() local 184 Str RHS(R); in doConcatSourceTest() local 192 StrView RHS(R); in doConcatSourceTest() local 199 StrView RHS(R); in doConcatSourceTest() local [all …]
|
/external/llvm/include/llvm/ADT/ |
D | SmallString.h | 57 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()
|
D | APInt.h | 786 APInt LLVM_ATTRIBUTE_UNUSED_RESULT And(const APInt &RHS) const { in And() 808 APInt LLVM_ATTRIBUTE_UNUSED_RESULT Or(const APInt &RHS) const { in Or() 830 APInt LLVM_ATTRIBUTE_UNUSED_RESULT Xor(const APInt &RHS) const { in Xor() 1007 bool eq(const APInt &RHS) const { return (*this) == RHS; } in eq() 1031 bool ne(const APInt &RHS) const { return !((*this) == RHS); } in ne() 1047 bool ult(uint64_t RHS) const { in ult() 1065 bool slt(int64_t RHS) const { in slt() 1075 bool ule(const APInt &RHS) const { return ult(RHS) || eq(RHS); } in ule() 1083 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() 1091 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); } in sle() [all …]
|
D | SmallBitVector.h | 152 SmallBitVector(const SmallBitVector &RHS) { in SmallBitVector() 159 SmallBitVector(SmallBitVector &&RHS) : X(RHS.X) { in SmallBitVector() function 380 bool anyCommon(const SmallBitVector &RHS) const { in anyCommon() 422 SmallBitVector &reset(const SmallBitVector &RHS) { in reset() 436 bool test(const SmallBitVector &RHS) const { in test() 508 void swap(SmallBitVector &RHS) { in swap() 590 swap(llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) { in swap()
|
D | Twine.h | 155 Child RHS; variable 169 explicit Twine(const Twine &LHS, const Twine &RHS) in Twine() 177 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind) in Twine() 358 /*implicit*/ Twine(const char *LHS, const StringRef &RHS) in Twine() 366 /*implicit*/ Twine(const StringRef &LHS, const char *RHS) in Twine() 385 Child LHS, RHS; in utohexstr() local
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | SmallString.h | 58 void assign(StringRef RHS) { in assign() 64 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()
|
D | APInt.h | 780 APInt And(const APInt &RHS) const { return this->operator&(RHS); } in And() 800 APInt Or(const APInt &RHS) const { return this->operator|(RHS); } in Or() 820 APInt Xor(const APInt &RHS) const { return this->operator^(RHS); } in Xor() 983 bool eq(const APInt &RHS) const { return (*this) == RHS; } in eq() 1007 bool ne(const APInt &RHS) const { return !((*this) == RHS); } in ne() 1023 bool ult(uint64_t RHS) const { in ult() 1041 bool slt(int64_t RHS) const { in slt() 1051 bool ule(const APInt &RHS) const { return ult(RHS) || eq(RHS); } in ule() 1059 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() 1067 bool sle(const APInt &RHS) const { return slt(RHS) || eq(RHS); } in sle() [all …]
|
/external/llvm/include/llvm/IR/ |
D | NoFolder.h | 47 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 …]
|
D | ConstantFolder.h | 38 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 …]
|
D | ValueHandle.h | 55 ValueHandleBase(const ValueHandleBase &RHS) in ValueHandleBase() 58 ValueHandleBase(HandleBaseKind Kind, const ValueHandleBase &RHS) in ValueHandleBase() 149 WeakVH(const WeakVH &RHS) in WeakVH()
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APInt.h | 658 APInt And(const APInt& RHS) const { in And() 671 APInt Or(const APInt& RHS) const { in Or() 684 APInt Xor(const APInt& RHS) const { in Xor() 766 APInt sdiv(const APInt &RHS) const { in sdiv() 788 APInt srem(const APInt &RHS) const { in srem() 808 static void sdivrem(const APInt &LHS, const APInt &RHS, in sdivrem() 867 bool eq(const APInt &RHS) const { in eq() 891 bool ne(const APInt &RHS) const { in ne() 905 bool ult(uint64_t RHS) const { in ult() 919 bool slt(uint64_t RHS) const { in slt() [all …]
|
D | APSInt.h | 202 APSInt And(const APSInt& RHS) const { in And() 210 APSInt Or(const APSInt& RHS) const { in Or() 219 APSInt Xor(const APSInt& RHS) const { in Xor()
|
/external/swiftshader/third_party/LLVM/include/llvm/TableGen/ |
D | Record.h | 117 virtual bool baseClassOf(const BitRecTy *RHS) const { return false; } in baseClassOf() 118 virtual bool baseClassOf(const BitsRecTy *RHS) const { return false; } in baseClassOf() 119 virtual bool baseClassOf(const IntRecTy *RHS) const { return false; } in baseClassOf() 120 virtual bool baseClassOf(const StringRecTy *RHS) const { return false; } in baseClassOf() 121 virtual bool baseClassOf(const ListRecTy *RHS) const { return false; } in baseClassOf() 122 virtual bool baseClassOf(const CodeRecTy *RHS) const { return false; } in baseClassOf() 123 virtual bool baseClassOf(const DagRecTy *RHS) const { return false; } in baseClassOf() 124 virtual bool baseClassOf(const RecordRecTy *RHS) const { return false; } in baseClassOf() 160 bool typeIsConvertibleTo(const RecTy *RHS) const { in typeIsConvertibleTo() 163 virtual bool baseClassOf(const BitRecTy *RHS) const { return true; } in baseClassOf() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCExpr.h | 311 const MCExpr *LHS, *RHS; variable 322 static const MCBinaryExpr *CreateAdd(const MCExpr *LHS, const MCExpr *RHS, in CreateAdd() 326 static const MCBinaryExpr *CreateAnd(const MCExpr *LHS, const MCExpr *RHS, in CreateAnd() 330 static const MCBinaryExpr *CreateDiv(const MCExpr *LHS, const MCExpr *RHS, in CreateDiv() 334 static const MCBinaryExpr *CreateEQ(const MCExpr *LHS, const MCExpr *RHS, in CreateEQ() 338 static const MCBinaryExpr *CreateGT(const MCExpr *LHS, const MCExpr *RHS, in CreateGT() 342 static const MCBinaryExpr *CreateGTE(const MCExpr *LHS, const MCExpr *RHS, in CreateGTE() 346 static const MCBinaryExpr *CreateLAnd(const MCExpr *LHS, const MCExpr *RHS, in CreateLAnd() 350 static const MCBinaryExpr *CreateLOr(const MCExpr *LHS, const MCExpr *RHS, in CreateLOr() 354 static const MCBinaryExpr *CreateLT(const MCExpr *LHS, const MCExpr *RHS, in CreateLT() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 54 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/llvm/lib/Support/ |
D | SmallPtrSet.cpp | 166 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) { in CopyFrom() 195 void SmallPtrSetImplBase::CopyHelper(const SmallPtrSetImplBase &RHS) { in CopyHelper() 207 SmallPtrSetImplBase &&RHS) { in MoveFrom() 214 SmallPtrSetImplBase &&RHS) { in MoveHelper() 238 void SmallPtrSetImplBase::swap(SmallPtrSetImplBase &RHS) { in swap()
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyLogical.h | 56 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/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | SmallPtrSet.cpp | 167 void SmallPtrSetImplBase::CopyFrom(const SmallPtrSetImplBase &RHS) { in CopyFrom() 196 void SmallPtrSetImplBase::CopyHelper(const SmallPtrSetImplBase &RHS) { in CopyHelper() 208 SmallPtrSetImplBase &&RHS) { in MoveFrom() 215 SmallPtrSetImplBase &&RHS) { in MoveHelper() 239 void SmallPtrSetImplBase::swap(SmallPtrSetImplBase &RHS) { in swap()
|
/external/llvm/include/llvm/MC/ |
D | MCExpr.h | 413 const MCExpr *LHS, *RHS; variable 415 MCBinaryExpr(Opcode Op, const MCExpr *LHS, const MCExpr *RHS) in MCBinaryExpr() 424 static const MCBinaryExpr *createAdd(const MCExpr *LHS, const MCExpr *RHS, in createAdd() 428 static const MCBinaryExpr *createAnd(const MCExpr *LHS, const MCExpr *RHS, in createAnd() 432 static const MCBinaryExpr *createDiv(const MCExpr *LHS, const MCExpr *RHS, in createDiv() 436 static const MCBinaryExpr *createEQ(const MCExpr *LHS, const MCExpr *RHS, in createEQ() 440 static const MCBinaryExpr *createGT(const MCExpr *LHS, const MCExpr *RHS, in createGT() 444 static const MCBinaryExpr *createGTE(const MCExpr *LHS, const MCExpr *RHS, in createGTE() 448 static const MCBinaryExpr *createLAnd(const MCExpr *LHS, const MCExpr *RHS, in createLAnd() 452 static const MCBinaryExpr *createLOr(const MCExpr *LHS, const MCExpr *RHS, in createLOr() [all …]
|
/external/clang/test/SemaCXX/ |
D | warn-self-assign.cpp | 22 #define RHS a in false_positives() macro 28 LHS OP RHS; in false_positives() local
|
/external/clang/lib/Rewrite/ |
D | RewriteRope.cpp | 401 RopePieceBTreeInterior(RopePieceBTreeNode *LHS, RopePieceBTreeNode *RHS) in RopePieceBTreeInterior() 487 if (RopePieceBTreeNode *RHS = getChild(i)->split(Offset-ChildOffset)) in split() local 517 if (RopePieceBTreeNode *RHS = getChild(i)->insert(Offset-ChildOffs, R)) in insert() local 526 RopePieceBTreeInterior::HandleChildPiece(unsigned i, RopePieceBTreeNode *RHS) { in HandleChildPiece() 720 RopePieceBTree::RopePieceBTree(const RopePieceBTree &RHS) { in RopePieceBTree() 743 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in insert() local 747 if (RopePieceBTreeNode *RHS = getRoot(Root)->insert(Offset, R)) in insert() local 753 if (RopePieceBTreeNode *RHS = getRoot(Root)->split(Offset)) in erase() local
|