Lines Matching refs:lowest
46 // Returns the lowest normal value.
47 static Float16 lowest() { return Float16(0xfbff); }
70 // Returns the lowest normal value.
71 static float lowest() { return std::numeric_limits<float>::lowest(); }
82 // Returns the lowest normal value.
83 static double lowest() { return std::numeric_limits<double>::lowest(); }
94 // Returns the lowest normal value.
95 static Float16 lowest() { return Float16::lowest(); }
139 // Returns the lowest normal value.
140 static FloatProxy<T> lowest() {
141 return FloatProxy<T>(FloatProxyTraits<T>::lowest());
377 // lowest-most num_fraction_bits of the uint_type.
774 value.set_value((value.isNegative() || negate_value) ? T::lowest()
807 // fail bit and set the lowest or highest value.
809 value.set_value(value.isNegative() ? Float16::lowest() : Float16::max());