Searched refs:max_uint_2op (Results 1 – 2 of 2) sorted by relevance
793 T max_uint_2op = std::numeric_limits<T>::max() - carry_in; in AddWithCarry() local794 nzcv().SetC((left > max_uint_2op) || ((max_uint_2op - left) < right)); in AddWithCarry()
353 uint64_t max_uint_2op = max_uint - carry_in; in AddWithCarry() local354 bool C = (left > max_uint_2op) || ((max_uint_2op - left) < right); in AddWithCarry()