Lines Matching full:rotr32
95 /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits.
97 static inline unsigned rotr32(unsigned Val, unsigned Amt) {
161 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
169 if ((rotr32(Imm, RotAmt2) & ~255U) == 0)
190 if (rotr32(~255U, RotAmt) & Arg)
201 V = rotr32(~255U, getSOImmValRotate(V)) & V;
206 V = rotr32(~255U, getSOImmValRotate(V)) & V;
213 return rotr32(255U, getSOImmValRotate(V)) & V;
220 V = rotr32(~255U, getSOImmValRotate(V)) & V;
223 assert(V == (rotr32(255U, getSOImmValRotate(V)) & V));
315 if ((rotr32(0xff000000U, RotAmt) & V) == V)
316 return (rotr32(V, 24 - RotAmt) & 0x7f) | ((RotAmt + 8) << 7);
353 V = rotr32 (~255U, getT2SOImmValRotate(V)) & V;
377 unsigned V = rotr32 (~255, getT2SOImmValRotate(Imm)) & Imm;