Home | History | Annotate | Download | only in numerics

Lines Matching defs:value_

351   T value_;
358 CheckedNumericState() : value_(0), validity_(RANGE_VALID) {}
362 : value_(value),
372 : value_(static_cast<T>(rhs.value())),
381 : value_(static_cast<T>(value)),
385 T value() const { return value_; }
392 T value_;
398 CheckedNumericState() : value_(0.0) {}
407 value_ = static_cast<T>(value);
411 value_ = -std::numeric_limits<T>::infinity();
415 value_ = std::numeric_limits<T>::infinity();
419 value_ = std::numeric_limits<T>::quiet_NaN();
432 : value_(static_cast<T>(value)) {}
437 : value_(static_cast<T>(rhs.value())) {}
440 return GetRangeConstraint(value_ <= std::numeric_limits<T>::max(),
441 value_ >= -std::numeric_limits<T>::max());
443 T value() const { return value_; }