Searched defs:GetRangeConstraint (Results 1 - 1 of 1) sorted by relevance

/external/v8/src/base/
H A Dsafe_conversions_impl.h101 inline RangeConstraint GetRangeConstraint(int integer_range_constraint) { function in namespace:v8::base::internal
110 inline RangeConstraint GetRangeConstraint(bool is_in_upper_bound, function in namespace:v8::base::internal
112 return GetRangeConstraint((is_in_upper_bound ? 0 : RANGE_OVERFLOW) |
156 ? GetRangeConstraint(value <= std::numeric_limits<Dst>::max(),
158 : GetRangeConstraint(value <= std::numeric_limits<Dst>::max(),
171 return GetRangeConstraint(value <= std::numeric_limits<Dst>::max(), true);
185 : GetRangeConstraint(
201 ? GetRangeConstraint(true, value >= static_cast<Src>(0))
202 : GetRangeConstraint(

Completed in 103 milliseconds