Home
last modified time | relevance | path

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

/openbmc/qemu/target/mips/tcg/
H A Ddsp_helper.c253 int64_t temp_sum; in mipsdsp_sat32_acc_q31() local
262 temp_sum = (int64_t)a + temp; in mipsdsp_sat32_acc_q31()
264 temp32 = (temp_sum >> 32) & 0x01; in mipsdsp_sat32_acc_q31()
265 temp31 = (temp_sum >> 31) & 0x01; in mipsdsp_sat32_acc_q31()
266 result = temp_sum & 0xFFFFFFFF; in mipsdsp_sat32_acc_q31()
2144 int64_t temp_sum; in helper_mulsaq_s_w_qh() local
2166 temp_sum = acc[0] + temp[0]; in helper_mulsaq_s_w_qh()
2167 if (((uint64_t)temp_sum < (uint64_t)acc[0]) && in helper_mulsaq_s_w_qh()
2168 ((uint64_t)temp_sum < (uint64_t)temp[0])) { in helper_mulsaq_s_w_qh()
2171 acc[0] = temp_sum; in helper_mulsaq_s_w_qh()
[all …]