Lines Matching refs:lowest
55 // Returns the lowest normal value.
56 static Float16 lowest() { return Float16(0xfbff); }
79 // Returns the lowest normal value.
80 static float lowest() { return std::numeric_limits<float>::lowest(); }
99 // Returns the lowest normal value.
100 static double lowest() { return std::numeric_limits<double>::lowest(); }
121 // Returns the lowest normal value.
122 static Float16 lowest() { return Float16::lowest(); }
185 // Returns the lowest normal value.
186 static FloatProxy<T> lowest() {
187 return FloatProxy<T>(FloatProxyTraits<T>::lowest());
423 // lowest-most num_fraction_bits of the uint_type.
858 value.set_value((value.isNegative() | negate_value) ? T::lowest()
891 // fail bit and set the lowest or highest value.
893 value.set_value(value.isNegative() ? Float16::lowest() : Float16::max());