Lines Matching refs:overflow
51 int overflow = 0; in helper_DIVWEU() local
57 overflow = 1; in helper_DIVWEU()
60 overflow = rt > UINT32_MAX; in helper_DIVWEU()
63 if (unlikely(overflow)) { in helper_DIVWEU()
68 helper_update_ov_legacy(env, overflow); in helper_DIVWEU()
78 int overflow = 0; in helper_DIVWE() local
85 overflow = 1; in helper_DIVWE()
88 overflow = rt != (int32_t)rt; in helper_DIVWE()
91 if (unlikely(overflow)) { in helper_DIVWE()
96 helper_update_ov_legacy(env, overflow); in helper_DIVWE()
107 int overflow = 0; in helper_DIVDEU() local
110 overflow = 1; in helper_DIVDEU()
117 helper_update_ov_legacy(env, overflow); in helper_DIVDEU()
128 int overflow = 0; in helper_DIVDE() local
131 overflow = 1; in helper_DIVDE()
138 helper_update_ov_legacy(env, overflow); in helper_DIVDE()
2305 int *overflow) in bcd_add_mag() argument
2325 *overflow = carry; in bcd_add_mag()
2330 int *overflow) in bcd_sub_mag() argument
2348 *overflow = carry; in bcd_sub_mag()
2357 int overflow = 0; in helper_bcdadd() local
2365 zero = bcd_add_mag(&result, a, b, &invalid, &overflow); in helper_bcdadd()
2371 bcd_sub_mag(&result, a, b, &invalid, &overflow); in helper_bcdadd()
2375 bcd_sub_mag(&result, b, a, &invalid, &overflow); in helper_bcdadd()
2387 } else if (overflow) { in helper_bcdadd()