Home | History | Annotate | Download | only in numerics

Lines Matching refs:ValueUnsafe

54       : state_(rhs.ValueUnsafe(), rhs.validity()) {}
91 return CheckedNumeric<T>::cast(*this).ValueUnsafe();
103 // ValueUnsafe() - DO NOT USE THIS IN EXTERNAL CODE - It is public right now
110 T ValueUnsafe() const { return state_.value(); }
202 return CheckedNumeric<T>(lhs.ValueUnsafe() OP rhs.ValueUnsafe()); \
205 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \
208 T result = Checked##NAME(static_cast<Promotion>(lhs.ValueUnsafe()), \
209 static_cast<Promotion>(rhs.ValueUnsafe()), \
229 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \
240 return CheckedNumeric<Promotion>(lhs.ValueUnsafe() OP rhs, \
251 return CheckedNumeric<Promotion>(lhs OP rhs.ValueUnsafe(), \