Lines Matching refs:RotAmt
139 unsigned RotAmt = TZ & ~1; in getSOImmValRotate() local
142 if ((rotr32(Imm, RotAmt) & ~255U) == 0) in getSOImmValRotate()
143 return (32-RotAmt)&31; // HW rotates right, not left. in getSOImmValRotate()
157 return (32-RotAmt)&31; // HW rotates right, not left. in getSOImmValRotate()
168 unsigned RotAmt = getSOImmValRotate(Arg); in getSOImmVal() local
171 if (rotr32(~255U, RotAmt) & Arg) in getSOImmVal()
175 return rotl32(Arg, RotAmt) | ((RotAmt>>1) << 8); in getSOImmVal()
305 unsigned RotAmt = countLeadingZeros(V); in getT2SOImmValRotateVal() local
306 if (RotAmt >= 24) in getT2SOImmValRotateVal()
310 if ((rotr32(0xff000000U, RotAmt) & V) == V) in getT2SOImmValRotateVal()
311 return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7); in getT2SOImmValRotateVal()
337 unsigned RotAmt = countTrailingZeros(V); in getT2SOImmValRotate() local
338 return (32 - RotAmt) & 31; in getT2SOImmValRotate()