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