Home
last modified time | relevance | path

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

/src/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h327 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator
333 PreferredRangeType Type = Smallest) const;
341 PreferredRangeType Type = Smallest) const;
411 PreferredRangeType RangeType = Smallest) const;
423 PreferredRangeType RangeType = Smallest) const;
437 PreferredRangeType RangeType = Smallest) const;
/src/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp135 APFloat Smallest = APFloat::getSmallestNormalized(Sem); in convertFCmp() local
136 APFloat NegSmallest = Smallest; in convertFCmp()
146 } else if (Const->isExactlyValue(Smallest)) { in convertFCmp()
/src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp593 const SCEV *Smallest = nullptr, *Greatest = nullptr, *GreatestSeen = nullptr; in calculateSubRanges() local
597 Smallest = Start; in calculateSubRanges()
617 Smallest = SE.getAddExpr(End, One); in calculateSubRanges()
622 auto Clamp = [&SE, Smallest, Greatest, IsSignedPredicate](const SCEV *S) { in calculateSubRanges()
624 ? SE.getSMaxExpr(Smallest, SE.getSMinExpr(Greatest, S)) in calculateSubRanges()
625 : SE.getUMaxExpr(Smallest, SE.getUMinExpr(Greatest, S)); in calculateSubRanges()
635 SE.isKnownPredicate(PredLE, Range.getBegin(), Smallest); in calculateSubRanges()
/src/contrib/unbound/doc/
H A Drequirements.txt72 o Smallest as possible component that does the job.
/src/contrib/one-true-awk/testdir/
H A Dfunstack.ok2081 -- for Finding the $i$th Smallest of $n$
3605 Smallest of $n$ Elements [M1]'' . . . . 301--304
H A Dfunstack.in15697 …title = "{ACM} Algorithm 489: The Algorithm {SELECT} -- for Finding the $i$th Smallest of $…
26772 …ark on {``Algorithm 489: The Algorithm SELECT --- for Finding the $i$th Smallest of $n$ Elements […
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4110 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
4113 Builder.CreateFCmpUGE(VAbs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
/src/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp7047 return SR.intersectWith(UR, ConstantRange::Smallest); in getRangeForAffineAR()