Searched defs:rotr32 (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h84 /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits.
86 static inline unsigned rotr32(unsigned Val, unsigned Amt) { function in namespace:llvm::ARM_AM
150 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
158 if ((rotr32(Imm, RotAmt2) & ~255U) == 0)
179 if (rotr32(~255U, RotAmt) & Arg)
190 V = rotr32(~255U, getSOImmValRotate(V)) & V;
195 V = rotr32(~255U, getSOImmValRotate(V)) & V;
202 return rotr32(255U, getSOImmValRotate(V)) & V;
209 V = rotr32(~255U, getSOImmValRotate(V)) & V;
212 assert(V == (rotr32(25
[all...]

Completed in 340 milliseconds