Home | History | Annotate | Download | only in mips

Lines Matching defs:shift_count

1519     uint8_t shift_count = static_cast<uint8_t>(value & 0x1F);
1522 if (shift_count != 0) {
1523 __ Ror(result, left, Operand(shift_count));
1529 if (shift_count != 0) {
1530 __ sra(result, left, shift_count);
1536 if (shift_count != 0) {
1537 __ srl(result, left, shift_count);
1548 if (shift_count != 0) {
1551 if (shift_count != 1) {
1552 __ sll(result, left, shift_count - 1);
1560 __ sll(result, left, shift_count);