Home | History | Annotate | Download | only in internal

Lines Matching defs:FloatingPoint

232 class FloatingPoint {
274 // Constructs a FloatingPoint from a raw floating-point number.
280 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
288 FloatingPoint fp(0);
328 bool AlmostEquals(const FloatingPoint& rhs) const {
384 inline float FloatingPoint<float>::Max() { return FLT_MAX; }
386 inline double FloatingPoint<double>::Max() { return DBL_MAX; }
388 // Typedefs the instances of the FloatingPoint template class that we
390 typedef FloatingPoint<float> Float;
391 typedef FloatingPoint<double> Double;