Home
last modified time | relevance | path

Searched refs:max_uint_2op (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/arm64/
Dsimulator-arm64.cc793 T max_uint_2op = std::numeric_limits<T>::max() - carry_in; in AddWithCarry() local
794 nzcv().SetC((left > max_uint_2op) || ((max_uint_2op - left) < right)); in AddWithCarry()
/external/vixl/src/aarch64/
Dsimulator-aarch64.cc353 uint64_t max_uint_2op = max_uint - carry_in; in AddWithCarry() local
354 bool C = (left > max_uint_2op) || ((max_uint_2op - left) < right); in AddWithCarry()