Home
last modified time | relevance | path

Searched refs:getLower (Results 1 – 11 of 11) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp90 return ConstantRange(CR.getUpper(), CR.getLower()); in makeAllowedICmpRegion()
165 } else if (getLower().isMinSignedValue() || getLower().isMinValue()) { in getEquivalentICmp()
167 getLower().isMinSignedValue() ? CmpInst::ICMP_SLT : CmpInst::ICMP_ULT; in getEquivalentICmp()
173 RHS = getLower(); in getEquivalentICmp()
373 return getLower(); in getUnsignedMin()
385 return getLower(); in getSignedMin()
405 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper); in contains()
410 Lower.ule(Other.getLower()); in contains()
412 return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower()); in contains()
843 APInt NewLower = getLower() + Other.getLower(); in add()
[all …]
DMetadata.cpp943 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
961 cast<ConstantInt>(ConstantInt::get(Ty, Union.getLower())); in tryMergeRange()
DVerifier.cpp3348 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper(); in isContiguous()
3379 Assert(LowV.sgt(LastRange.getLower()), "Intervals are not in order", in visitRangeMetadata()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DValueLattice.cpp21 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", " in operator <<()
DScalarEvolution.cpp5838 APInt StartLower = StartRange.getLower(); in getRangeForAffineARHelper()
8713 APInt Lower = Range.getLower().sextOrSelf(A.getBitWidth()) - 1; in SolveQuadraticAddRecRange()
10900 APInt End = A.sge(1) ? (Range.getUpper() - 1) : Range.getLower(); in getNumIterationsInRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h159 const APInt &getLower() const { return Lower; } in getLower() function
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js256 this.getLower = function (...args) { method
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp402 unsigned MinBW = std::max(R.getLower().getMinSignedBits(), in validateAndTransform()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp623 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp) in matchInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DAttributor.cpp5237 Ty, AssumedConstantRange.getLower())), in getMDNodeForConstantRange()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp2589 const APInt &Lower = CR.getLower(); in foldICmpAddConstant()