Home
last modified time | relevance | path

Searched refs:Smallest (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DConstantRange.h292 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator
298 PreferredRangeType Type = Smallest) const;
306 PreferredRangeType Type = Smallest) const;
367 PreferredRangeType RangeType = Smallest) const;
379 PreferredRangeType RangeType = Smallest) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp139 APFloat Smallest = APFloat::getSmallestNormalized(Sem); in convertFCmp() local
140 APFloat NegSmallest = Smallest; in convertFCmp()
150 } else if (Const->isExactlyValue(Smallest)) { in convertFCmp()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DInductiveRangeCheckElimination.cpp1090 const SCEV *Smallest = nullptr, *Greatest = nullptr, *GreatestSeen = nullptr; in calculateSubRanges() local
1094 Smallest = Start; in calculateSubRanges()
1114 Smallest = SE.getAddExpr(End, One); in calculateSubRanges()
1119 auto Clamp = [this, Smallest, Greatest, IsSignedPredicate](const SCEV *S) { in calculateSubRanges()
1121 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
1122 : SE.getUMaxExpr(Smallest, SE.getUMinExpr(Greatest, S)); in calculateSubRanges()
1132 SE.isKnownPredicate(PredLE, Range.getBegin(), Smallest); in calculateSubRanges()
/freebsd-12-stable/contrib/unbound/doc/
Drequirements.txt72 o Smallest as possible component that does the job.
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGBuiltin.cpp3226 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
3229 Builder.CreateFCmpUGE(Abs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
3291 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
3294 Builder.CreateFCmpUGE(VAbs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DScalarEvolution.cpp6350 return SR.intersectWith(UR, ConstantRange::Smallest); in getRangeForAffineAR()