/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Z3Solver.cpp | 246 const llvm::fltSemantics &RHS) { in areEquivalent() 348 SMTExprRef mkBVAdd(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVAdd() 354 SMTExprRef mkBVSub(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSub() 360 SMTExprRef mkBVMul(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVMul() 366 SMTExprRef mkBVSRem(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSRem() 372 SMTExprRef mkBVURem(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVURem() 378 SMTExprRef mkBVSDiv(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVSDiv() 384 SMTExprRef mkBVUDiv(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVUDiv() 390 SMTExprRef mkBVShl(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVShl() 396 SMTExprRef mkBVAshr(const SMTExprRef &LHS, const SMTExprRef &RHS) override { in mkBVAshr() [all …]
|
D | SmallPtrSet.cpp | 144 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()
|
D | KnownBits.cpp | 19 const KnownBits &LHS, const KnownBits &RHS, in computeForAddCarry() 48 const KnownBits &LHS, const KnownBits &RHS, const KnownBits &Carry) { in computeForAddCarry() 55 const KnownBits &LHS, KnownBits RHS) { in computeForAddSub()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | NoFolder.h | 49 Instruction *CreateNSWAdd(Constant *LHS, Constant *RHS) const { in CreateNSWAdd() 53 Instruction *CreateNUWAdd(Constant *LHS, Constant *RHS) const { in CreateNUWAdd() 57 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() 69 Instruction *CreateNSWSub(Constant *LHS, Constant *RHS) const { in CreateNSWSub() 73 Instruction *CreateNUWSub(Constant *LHS, Constant *RHS) const { in CreateNUWSub() 77 Instruction *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() 89 Instruction *CreateNSWMul(Constant *LHS, Constant *RHS) const { in CreateNSWMul() 93 Instruction *CreateNUWMul(Constant *LHS, Constant *RHS) const { in CreateNUWMul() 97 Instruction *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() 108 Instruction *CreateExactUDiv(Constant *LHS, Constant *RHS) const { in CreateExactUDiv() [all …]
|
D | ConstantFolder.h | 40 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() 49 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() 58 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() 72 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const { in CreateFDiv() 76 Constant *CreateURem(Constant *LHS, Constant *RHS) const { in CreateURem() 80 Constant *CreateSRem(Constant *LHS, Constant *RHS) const { in CreateSRem() 84 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() 103 Constant *CreateAnd(Constant *LHS, Constant *RHS) const { in CreateAnd() 107 Constant *CreateOr(Constant *LHS, Constant *RHS) const { in CreateOr() 111 Constant *CreateXor(Constant *LHS, Constant *RHS) const { in CreateXor() [all …]
|
D | ValueHandle.h | 39 ValueHandleBase(const ValueHandleBase &RHS) in ValueHandleBase() 42 ValueHandleBase(HandleBaseKind Kind, const ValueHandleBase &RHS) in ValueHandleBase() 144 WeakVH(const WeakVH &RHS) in WeakVH()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | SmallString.h | 57 void assign(StringRef RHS) { in assign() 63 void assign(const SmallVectorImpl<char> &RHS) { in assign() 83 void append(StringRef RHS) { in append() 88 void append(const SmallVectorImpl<char> &RHS) { in append() 98 bool equals(StringRef RHS) const { in equals() 103 bool equals_lower(StringRef RHS) const { in equals_lower() 109 int compare(StringRef RHS) const { in compare() 114 int compare_lower(StringRef RHS) const { in compare_lower() 120 int compare_numeric(StringRef RHS) const { in compare_numeric()
|
D | APInt.h | 1173 bool eq(const APInt &RHS) const { return (*this) == RHS; } in eq() 1197 bool ne(const APInt &RHS) const { return !((*this) == RHS); } in ne() 1205 bool ult(const APInt &RHS) const { return compare(RHS) < 0; } in ult() 1213 bool ult(uint64_t RHS) const { in ult() 1224 bool slt(const APInt &RHS) const { return compareSigned(RHS) < 0; } in slt() 1232 bool slt(int64_t RHS) const { in slt() 1243 bool ule(const APInt &RHS) const { return compare(RHS) <= 0; } in ule() 1251 bool ule(uint64_t RHS) const { return !ugt(RHS); } in ule() 1259 bool sle(const APInt &RHS) const { return compareSigned(RHS) <= 0; } in sle() 1267 bool sle(uint64_t RHS) const { return !sgt(RHS); } in sle() [all …]
|
D | Twine.h | 160 Child RHS = {0}; 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
|
D | SmallBitVector.h | 153 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() 708 swap(llvm::SmallBitVector &LHS, llvm::SmallBitVector &RHS) { in swap()
|
D | APFloat.h | 733 Storage(const Storage &RHS) { in Storage() 745 Storage(Storage &&RHS) { in Storage() function 842 cmpResult compareAbsoluteValue(const APFloat &RHS) const { in compareAbsoluteValue() 961 opStatus add(const APFloat &RHS, roundingMode RM) { in add() 970 opStatus subtract(const APFloat &RHS, roundingMode RM) { in subtract() 979 opStatus multiply(const APFloat &RHS, roundingMode RM) { in multiply() 988 opStatus divide(const APFloat &RHS, roundingMode RM) { in divide() 997 opStatus remainder(const APFloat &RHS) { in remainder() 1006 opStatus mod(const APFloat &RHS) { in mod() 1075 void copySign(const APFloat &RHS) { in copySign() [all …]
|
D | SparseBitVector.h | 397 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()
|
/third_party/skia/third_party/externals/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 …]
|
D | Twine.h | 160 Child RHS; variable 173 explicit Twine(const Twine &LHS, const Twine &RHS) in Twine() 181 explicit Twine(Child LHS, NodeKind LHSKind, Child RHS, NodeKind RHSKind) in Twine() 365 /*implicit*/ Twine(const char *LHS, const StringRef &RHS) in Twine() 373 /*implicit*/ Twine(const StringRef &LHS, const char *RHS) in Twine() 396 Child LHS, RHS; in utohexstr() local
|
D | BitVector.h | 93 BitVector(const BitVector &RHS) : Size(RHS.size()) { in BitVector() 105 BitVector(BitVector &&RHS) in BitVector() function 328 bool anyCommon(const BitVector &RHS) const { in anyCommon() 381 BitVector &reset(const BitVector &RHS) { in reset() 392 bool test(const BitVector &RHS) const { in test() 463 void swap(BitVector &RHS) { in swap() 586 swap(llvm::BitVector &LHS, llvm::BitVector &RHS) { in swap()
|
D | APFloat.h | 695 Storage(const Storage &RHS) { in Storage() 707 Storage(Storage &&RHS) { in Storage() function 806 cmpResult compareAbsoluteValue(const APFloat &RHS) const { in compareAbsoluteValue() 925 opStatus add(const APFloat &RHS, roundingMode RM) { in add() 932 opStatus subtract(const APFloat &RHS, roundingMode RM) { in subtract() 939 opStatus multiply(const APFloat &RHS, roundingMode RM) { in multiply() 942 opStatus divide(const APFloat &RHS, roundingMode RM) { in divide() 945 opStatus remainder(const APFloat &RHS) { in remainder() 948 opStatus mod(const APFloat &RHS) { return getIEEE().mod(RHS.getIEEE()); } in mod() 977 void copySign(const APFloat &RHS) { getIEEE().copySign(RHS.getIEEE()); } in copySign() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | CheckedArithmetic.h | 48 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineInternal.h | 119 inline bool isSignBitCheck(ICmpInst::Predicate Pred, const APInt &RHS, in isSignBitCheck() 536 bool willNotOverflowSignedAdd(const Value *LHS, const Value *RHS, in willNotOverflowSignedAdd() 542 bool willNotOverflowUnsignedAdd(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedAdd() 548 bool willNotOverflowAdd(const Value *LHS, const Value *RHS, in willNotOverflowAdd() 554 bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS, in willNotOverflowSignedSub() 560 bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedSub() 566 bool willNotOverflowSub(const Value *LHS, const Value *RHS, in willNotOverflowSub() 572 bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS, in willNotOverflowSignedMul() 578 bool willNotOverflowUnsignedMul(const Value *LHS, const Value *RHS, in willNotOverflowUnsignedMul() 584 bool willNotOverflowMul(const Value *LHS, const Value *RHS, in willNotOverflowMul() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 52 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() 59 Constant *CreateFSub(Constant *LHS, Constant *RHS) const { in CreateFSub() 66 Constant *CreateFMul(Constant *LHS, Constant *RHS) const { in CreateFMul() 75 Constant *CreateFDiv(Constant *LHS, Constant *RHS) const { in CreateFDiv() 78 Constant *CreateURem(Constant *LHS, Constant *RHS) const { in CreateURem() 81 Constant *CreateSRem(Constant *LHS, Constant *RHS) const { in CreateSRem() 84 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() 97 Constant *CreateAnd(Constant *LHS, Constant *RHS) const { in CreateAnd() 100 Constant *CreateOr(Constant *LHS, Constant *RHS) const { in CreateOr() 103 Constant *CreateXor(Constant *LHS, Constant *RHS) const { in CreateXor() [all …]
|
/third_party/skia/third_party/externals/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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCExpr.h | 453 const MCExpr *LHS, *RHS; variable 467 static const MCBinaryExpr *createAdd(const MCExpr *LHS, const MCExpr *RHS, in createAdd() 472 static const MCBinaryExpr *createAnd(const MCExpr *LHS, const MCExpr *RHS, in createAnd() 477 static const MCBinaryExpr *createDiv(const MCExpr *LHS, const MCExpr *RHS, in createDiv() 482 static const MCBinaryExpr *createEQ(const MCExpr *LHS, const MCExpr *RHS, in createEQ() 487 static const MCBinaryExpr *createGT(const MCExpr *LHS, const MCExpr *RHS, in createGT() 492 static const MCBinaryExpr *createGTE(const MCExpr *LHS, const MCExpr *RHS, in createGTE() 497 static const MCBinaryExpr *createLAnd(const MCExpr *LHS, const MCExpr *RHS, in createLAnd() 502 static const MCBinaryExpr *createLOr(const MCExpr *LHS, const MCExpr *RHS, in createLOr() 507 static const MCBinaryExpr *createLT(const MCExpr *LHS, const MCExpr *RHS, in createLT() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | NaryReassociate.cpp | 352 Value *LHS = AO->getOperand(0), *RHS = AO->getOperand(1); in tryReassociateGEPAtIndex() local 369 Value *RHS, Type *IndexedType) { in tryReassociateGEPAtIndex() 438 Value *LHS = I->getOperand(0), *RHS = I->getOperand(1); in tryReassociateBinaryOp() local 449 Instruction *NaryReassociatePass::tryReassociateBinaryOp(Value *LHS, Value *RHS, in tryReassociateBinaryOp() 474 Value *RHS, in tryReassociatedBinaryOp() 512 const SCEV *RHS) { in getBinarySCEV()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
D | InterfaceFile.cpp | 34 lower_bound(Container, Target_, [](const Target &LHS, const Target &RHS) { in addEntry() 63 Target RHS) { return LHS.first < RHS; }); in addParentUmbrella() 77 Target RHS) { return LHS.first < RHS; }); in addUUID() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceBitVector.h | 324 BitVectorTmpl(const BitVectorTmpl &RHS) : Size(RHS.size()), Alloc(RHS.Alloc) { in BitVectorTmpl() 336 BitVectorTmpl(BitVectorTmpl &&RHS) in BitVectorTmpl() function 557 bool anyCommon(const BitVectorTmpl &RHS) const { in anyCommon() 608 BitVectorTmpl &reset(const BitVectorTmpl &RHS) { in reset() 619 bool test(const BitVectorTmpl &RHS) const { in test() 698 void swap(BitVectorTmpl &RHS) { in swap() 825 inline void swap(Ice::BitVectorTmpl<AT> &LHS, Ice::BitVectorTmpl<AT> &RHS) { in swap()
|