Home
last modified time | relevance | path

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

/freebsd/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;
/freebsd/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/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp589 // We compute `Smallest` and `Greatest` such that [Smallest, Greatest), or
590 // [Smallest, GreatestSeen] is the range of values the induction variable
593 const SCEV *Smallest = nullptr, *Greatest = nullptr, *GreatestSeen = nullptr;
597 Smallest = Start;
599 // No overflow, because the range [Smallest, GreatestSeen] is not empty.
608 // * if `Smallest` sign-overflows we know `End` is `INT_SMAX`. Since the
610 // the loop body is actually executed with is `INT_SMIN` == `Smallest`.
613 // that case, `Clamp` will always return `Smallest` and
614 // [`Result.LowLimit`, `Result.HighLimit`) = [`Smallest`, `Smalles
1232 const SCEV *Smallest = nullptr, *Greatest = nullptr, *GreatestSeen = nullptr; calculateSubRanges() local
[all...]
/freebsd/contrib/unbound/doc/
H A Drequirements.txt72 o Smallest as possible component that does the job.
/freebsd/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/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()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp7047 return SR.intersectWith(UR, ConstantRange::Smallest); in getRangeForAffineAR()