HomeSort by relevance Sort by last modified time
    Searched refs:ValueUnsafe (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/base/numerics/
safe_math.h 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()), \
    [all...]
safe_numerics_unittest.cc 47 << "Result test: Value " << +(actual).ValueUnsafe() << " as " << dst \
52 CheckedNumeric<Dst>(actual).ValueUnsafe()) \
53 << "Result test: Value " << +((actual).ValueUnsafe()) << " as " << dst \
  /external/chromium_org/v8/src/base/
safe_math.h 57 : state_(rhs.ValueUnsafe(), rhs.validity()) {}
95 return CheckedNumeric<T>::cast(*this).ValueUnsafe();
107 // ValueUnsafe() - DO NOT USE THIS IN EXTERNAL CODE - It is public right now
114 T ValueUnsafe() const { return state_.value(); }
206 return CheckedNumeric<T>(lhs.ValueUnsafe() OP rhs.ValueUnsafe()); \
209 lhs.ValueUnsafe() OP rhs.ValueUnsafe(), \
212 T result = Checked##NAME(static_cast<Promotion>(lhs.ValueUnsafe()), \
213 static_cast<Promotion>(rhs.ValueUnsafe()), \
    [all...]

Completed in 126 milliseconds