Home
last modified time | relevance | path

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

/openbmc/qemu/target/mips/tcg/
H A Ddsp_helper.c523 uint64_t tempB, tempA; in mipsdsp_rashift_acc() local
525 tempB = env->active_tc.HI[ac]; in mipsdsp_rashift_acc()
530 p[1] = tempB; in mipsdsp_rashift_acc()
533 p[0] = (tempB << (64 - shift)) | (tempA >> shift); in mipsdsp_rashift_acc()
534 p[1] = (int64_t)tempB >> shift; in mipsdsp_rashift_acc()
544 int64_t tempB, tempA; in mipsdsp_rndrashift_acc() local
546 tempB = env->active_tc.HI[ac]; in mipsdsp_rndrashift_acc()
551 p[2] = tempB >> 63; in mipsdsp_rndrashift_acc()
552 p[1] = (tempB << 1) | (tempA >> 63); in mipsdsp_rndrashift_acc()
555 p[0] = (tempB << (65 - shift)) | (tempA >> (shift - 1)); in mipsdsp_rndrashift_acc()
[all …]