Home
last modified time | relevance | path

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

/qemu/target/mips/tcg/
H A Dmsa_helper.c5656 int64_t q_prod, q_ret; in msa_madd_q_df() local
5661 q_prod = arg1 * arg2; in msa_madd_q_df()
5662 q_ret = ((dest << (DF_BITS(df) - 1)) + q_prod) >> (DF_BITS(df) - 1); in msa_madd_q_df()
5670 int64_t q_prod, q_ret; in msa_msub_q_df() local
5675 q_prod = arg1 * arg2; in msa_msub_q_df()
5676 q_ret = ((dest << (DF_BITS(df) - 1)) - q_prod) >> (DF_BITS(df) - 1); in msa_msub_q_df()
5684 int64_t q_prod, q_ret; in msa_maddr_q_df() local
5690 q_prod = arg1 * arg2; in msa_maddr_q_df()
5691 q_ret = ((dest << (DF_BITS(df) - 1)) + q_prod + r_bit) >> (DF_BITS(df) - 1); in msa_maddr_q_df()
5699 int64_t q_prod, q_ret; in msa_msubr_q_df() local
[all …]