Lines Matching refs:RotAmt
147 unsigned RotAmt = TZ & ~1;
150 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
151 return (32-RotAmt)&31; // HW rotates right, not left.
165 return (32-RotAmt)&31; // HW rotates right, not left.
176 unsigned RotAmt = getSOImmValRotate(Arg);
179 if (rotr32(~255U, RotAmt) & Arg)
183 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8);
299 unsigned RotAmt = CountLeadingZeros_32(V);
300 if (RotAmt >= 24)
304 if ((rotr32(0xff000000U, RotAmt) & V) == V)
305 return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7);
331 unsigned RotAmt = CountTrailingZeros_32(V);
332 return (32 - RotAmt) & 31;