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

  /external/swiftshader/third_party/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/test/CodeGen/PowerPC/
rotl-2.ll 16 define i32 @rotr32(i32 %A, i8 %Amt) nounwind {
  /external/swiftshader/third_party/LLVM/test/CodeGen/PowerPC/
rotl-2.ll 15 define i32 @rotr32(i32 %A, i8 %Amt) nounwind {
  /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/libchrome/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/llvm/test/CodeGen/X86/
rotate.ll 14 define i32 @rotr32(i32 %A, i8 %Amt) {
  /external/swiftshader/third_party/LLVM/test/CodeGen/X86/
rotate.ll 14 define i32 @rotr32(i32 %A, i8 %Amt) {
  /external/llvm/lib/Target/ARM/
Thumb2InstrInfo.cpp 312 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
329 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt);
518 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
ARMBaseInstrInfo.cpp     [all...]
  /external/swiftshader/third_party/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...]
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp     [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 609 milliseconds