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

  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAddressingModes.h 84 /// 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(255U, getSOImmValRotate(V)) & V))
    [all...]
  /external/chromium_org/third_party/smhasher/src/
Platform.h 23 #define ROTR32(x,y) _rotr(x,y)
56 inline uint32_t rotr32 ( uint32_t x, int8_t r ) function
68 #define ROTR32(x,y) rotr32(x,y)
  /external/bison/lib/
bitrotate.h 64 rotr32 (uint32_t x, int n) function
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 289 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
306 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
488 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp     [all...]

Completed in 99 milliseconds