Home
last modified time | relevance | path

Searched refs:nmax (Results 1 - 1 of 1) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dnumber_gate_info.h169 int32_t nmax = MaybeAddOverflow(rhs) ? INT32_MAX : max_ + rhs.max_; in operator +() local
171 return RangeInfo(nmin, nmax); in operator +()
178 int32_t nmax = std::max(std::abs(rhs.min_), std::abs(rhs.max_)); in operator %() local
179 if (nmax == 0) { in operator %()
182 if (max_ > 0) result = result.Union(RangeInfo(0, nmax - 1)); in operator %()
183 if (min_ < 0) result = result.Union(RangeInfo(-nmax + 1, 0)); in operator %()
200 int32_t nmax = GetMaxMulResult(rhs); in operator *() local
202 return RangeInfo(nmin, nmax); in operator *()
271 int32_t nmax = MaybeSubOverflow(rhs) ? INT32_MAX : max_ - rhs.min_; in operator -() local
273 return RangeInfo(nmin, nmax); in operator -()
296 int32_t nmax = bit_cast<int32_t>(tempMax >> shift); SHR() local
306 int32_t nmax = max_ >> shift; ASHR() local
[all...]

Completed in 2 milliseconds