Home | History | Annotate | Download | only in internal

Lines Matching defs:FloatingPoint

250 class FloatingPoint {
292 // Constructs a FloatingPoint from a raw floating-point number.
298 explicit FloatingPoint(const RawType& x) { u_.value_ = x; }
306 FloatingPoint fp(0);
346 bool AlmostEquals(const FloatingPoint& rhs) const {
402 inline float FloatingPoint<float>::Max() { return FLT_MAX; }
404 inline double FloatingPoint<double>::Max() { return DBL_MAX; }
406 // Typedefs the instances of the FloatingPoint template class that we
408 typedef FloatingPoint<float> Float;
409 typedef FloatingPoint<double> Double;