reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
14177 uint64_t unsigned_sum = x + y + carry_in; 14178 int64_t signed_sum = (int32_t)x + (int32_t)y + (int32_t)carry_in; 14185 carry_out = ((int32_t)x >= (int32_t)(~y)) ? 1 : 0; 14187 carry_out = ((int32_t)x > (int32_t)y) ? 1 : 0;