Lines Matching defs:shift
1245 int32_t shift = WhichPowerOf2Abs(divisor);
1246 if (shift > 0) {
1247 // The arithmetic shift is always OK, the 'if' is an optimization only.
1248 if (shift > 1) __ sar(result, 31);
1249 __ shr(result, 32 - shift);
1251 __ sar(result, shift);
1342 // can simply do an arithmetic right shift.
1344 int32_t shift = WhichPowerOf2Abs(divisor);
1346 __ sar(dividend, shift);
1366 __ sar(dividend, shift);
1375 __ sar(dividend, shift);
3195 // Take the tag bit into account while computing the shift size.