Home | History | Annotate | Download | only in numerics

Lines Matching defs:max

35 // type if both numeric_limits<Src>::max() <= numeric_limits<Dst>::max() and
140 static Dst max() {
141 // The following logic avoids warnings where the max function is
154 return DstLimits::max() - static_cast<Dst>((UINTMAX_C(1) << shift) - 1);
158 return std::numeric_limits<Dst>::is_iec559 ? -DstLimits::max()
202 return GetRangeConstraint((value <= NarrowingRange<Dst, Src>::max()),
215 return GetRangeConstraint(value <= NarrowingRange<Dst, Src>::max(), true);
230 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),
247 value <= static_cast<Src>(NarrowingRange<Dst, Src>::max()),