Home | History | Annotate | Download | only in arm

Lines Matching defs:shift

1198             int32_t shift = WhichPowerOf2(constant_abs);
1199 __ mov(result, Operand(left, LSL, shift));
1201 int32_t shift = WhichPowerOf2(constant_abs - 1);
1202 __ add(result, left, Operand(left, LSL, shift));
1204 int32_t shift = WhichPowerOf2(constant_abs + 1);
1205 __ rsb(result, left, Operand(left, LSL, shift));