Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h319 enum PreferredRangeType { Smallest, Unsigned, Signed }; enumerator
325 PreferredRangeType Type = Smallest) const;
333 PreferredRangeType Type = Smallest) const;
403 PreferredRangeType RangeType = Smallest) const;
415 PreferredRangeType RangeType = Smallest) const;
/freebsd-14.2/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()
/freebsd-14.2/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()
/freebsd-14.2/contrib/unbound/doc/
H A Drequirements.txt72 o Smallest as possible component that does the job.
/freebsd-14.2/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 […
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp3928 APFloat Smallest = APFloat::getSmallestNormalized( in EmitBuiltinExpr() local
3931 Builder.CreateFCmpUGE(VAbs, ConstantFP::get(V->getContext(), Smallest), in EmitBuiltinExpr()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp7031 return SR.intersectWith(UR, ConstantRange::Smallest); in getRangeForAffineAR()