Lines Matching defs:shift
1209 uint16_t shift = WhichPowerOf2Abs(divisor);
1210 if (shift == 0) {
1212 } else if (shift == 1) {
1217 __ srl(result, result, 32 - shift);
1220 if (shift > 0) __ sra(result, result, shift);
1322 // can simply do an arithmetic right shift.
1323 uint16_t shift = WhichPowerOf2Abs(divisor);
1325 __ sra(result, dividend, shift);
1351 __ sra(result, result, shift);
1360 __ sra(result, result, shift);
1505 int32_t shift = WhichPowerOf2(constant_abs);
1506 __ sll(result, left, shift);
1510 int32_t shift = WhichPowerOf2(constant_abs - 1);
1511 __ sll(scratch, left, shift);
1516 int32_t shift = WhichPowerOf2(constant_abs + 1);
1517 __ sll(scratch, left, shift);
1616 // shift instructions.