Home
last modified time | relevance | path

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

/qemu/target/mips/tcg/
H A Ddsp_helper.c3549 int8_t shift_t; in helper_dshilo() local
3552 shift_t = (int8_t)(shift << 1) >> 1; in helper_dshilo()
3557 if (shift_t != 0) { in helper_dshilo()
3558 if (shift_t >= 0) { in helper_dshilo()
3559 tempA = (tempB << (64 - shift_t)) | (tempA >> shift_t); in helper_dshilo()
3560 tempB = tempB >> shift_t; in helper_dshilo()
3562 shift_t = -shift_t; in helper_dshilo()
3563 tempB = (tempB << shift_t) | (tempA >> (64 - shift_t)); in helper_dshilo()
3564 tempA = tempA << shift_t; in helper_dshilo()