Home | History | Annotate | Download | only in s390

Lines Matching defs:shift_count

1612     uint8_t shift_count = static_cast<uint8_t>(value & 0x1F);
1615 if (shift_count != 0) {
1616 __ rll(result, left, Operand(32 - shift_count));
1625 if (shift_count != 0) {
1626 __ ShiftRightArith(result, left, Operand(shift_count));
1635 if (shift_count != 0) {
1636 __ ShiftRight(result, left, Operand(shift_count));
1649 if (shift_count != 0) {
1652 __ ShiftLeftP(result, left, Operand(shift_count));
1656 if (shift_count != 1) {
1657 __ ShiftLeft(result, left, Operand(shift_count - 1));
1668 __ ShiftLeft(result, left, Operand(shift_count));