Home
last modified time | relevance | path

Searched refs:tempA (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
526 tempA = env->active_tc.LO[ac]; in mipsdsp_rashift_acc()
531 p[0] = tempA; in mipsdsp_rashift_acc()
533 p[0] = (tempB << (64 - shift)) | (tempA >> shift); in mipsdsp_rashift_acc()
544 int64_t tempB, tempA; in mipsdsp_rndrashift_acc() local
547 tempA = env->active_tc.LO[ac]; in mipsdsp_rndrashift_acc()
552 p[1] = (tempB << 1) | (tempA >> 63); in mipsdsp_rndrashift_acc()
553 p[0] = tempA << 1; in mipsdsp_rndrashift_acc()
555 p[0] = (tempB << (65 - shift)) | (tempA >> (shift - 1)); in mipsdsp_rndrashift_acc()
1258 uint8_t tempD, tempC, tempB, tempA; \
[all …]