HomeSort by relevance Sort by last modified time
    Searched refs:rotr32 (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 83 /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits.
85 static inline unsigned rotr32(unsigned Val, unsigned Amt) { function in namespace:llvm::ARM_AM
149 if ((rotr32(Imm, RotAmt) & ~255U) == 0)
157 if ((rotr32(Imm, RotAmt2) & ~255U) == 0)
178 if (rotr32(~255U, RotAmt) & Arg)
189 V = rotr32(~255U, getSOImmValRotate(V)) & V;
194 V = rotr32(~255U, getSOImmValRotate(V)) & V;
201 return rotr32(255U, getSOImmValRotate(V)) & V;
208 V = rotr32(~255U, getSOImmValRotate(V)) & V;
211 assert(V == (rotr32(255U, getSOImmValRotate(V)) & V))
    [all...]
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 251 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
268 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
450 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp     [all...]

Completed in 2334 milliseconds