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

  /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)
Bitvec.h 198 template<> inline void rrot ( uint32_t & blob, int c ) { blob = ROTR32(blob,c); }
236 return ROTR32(blob,start) & ((1<<count)-1);
  /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/llvm/test/CodeGen/PowerPC/
rotl-2.ll 15 define i32 @rotr32(i32 %A, i8 %Amt) nounwind {
  /external/chromium_org/crypto/third_party/nss/
sha512.cc 146 #define ROTR32(x,n) _lrotr(x,n)
149 #define ROTR32(x,n) ((x >> n) | (x << ((8 * sizeof x) - n)))
154 #define S0(x) (ROTR32(x, 2) ^ ROTR32(x,13) ^ ROTR32(x,22))
155 #define S1(x) (ROTR32(x, 6) ^ ROTR32(x,11) ^ ROTR32(x,25))
156 #define s0(x) (t1 = x, ROTR32(t1, 7) ^ ROTR32(t1,18) ^ SHR(t1, 3)
    [all...]
  /external/bison/lib/
bitrotate.h 64 rotr32 (uint32_t x, int n) function
  /external/lldb/source/Plugins/Process/Utility/
InstructionUtils.h 68 Rotr32 (uint32_t bits, uint32_t amt)
ARMUtils.h 185 uint32_t result = Rotr32(value, amt);
  /external/llvm/test/CodeGen/X86/
rotate.ll 14 define i32 @rotr32(i32 %A, i8 %Amt) {
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 296 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
313 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
502 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp     [all...]

Completed in 282 milliseconds