Searched refs:rotr32 (Results 1 – 10 of 10) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMAddressingModes.h | 86 inline unsigned rotr32(unsigned Val, unsigned Amt) { in rotr32() function 142 if ((rotr32(Imm, RotAmt) & ~255U) == 0) in getSOImmValRotate() 150 if ((rotr32(Imm, RotAmt2) & ~255U) == 0) in getSOImmValRotate() 171 if (rotr32(~255U, RotAmt) & Arg) in getSOImmVal() 182 V = rotr32(~255U, getSOImmValRotate(V)) & V; in isSOImmTwoPartVal() 187 V = rotr32(~255U, getSOImmValRotate(V)) & V; in isSOImmTwoPartVal() 194 return rotr32(255U, getSOImmValRotate(V)) & V; in getSOImmTwoPartFirst() 201 V = rotr32(~255U, getSOImmValRotate(V)) & V; in getSOImmTwoPartSecond() 204 assert(V == (rotr32(255U, getSOImmValRotate(V)) & V)); in getSOImmTwoPartSecond() 296 if ((rotr32(0xff000000U, RotAmt) & V) == V) in getT2SOImmValRotateVal() [all …]
|
D | ARMInstPrinter.cpp | 1390 int32_t Rotated = ARM_AM::rotr32(Bits, Rot); in printModImmOperand()
|
/third_party/openssl/providers/implementations/digests/ |
D | blake2s_prov.c | 201 d = rotr32(d ^ a, 16); \ in blake2s_compress() 203 b = rotr32(b ^ c, 12); \ in blake2s_compress() 205 d = rotr32(d ^ a, 8); \ in blake2s_compress() 207 b = rotr32(b ^ c, 7); \ in blake2s_compress()
|
D | blake2_impl.h | 110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
|
/third_party/python/Modules/_blake2/impl/ |
D | blake2s-ref.c | 245 d = rotr32(d ^ a, 16); \ in blake2s_compress() 247 b = rotr32(b ^ c, 12); \ in blake2s_compress() 249 d = rotr32(d ^ a, 8); \ in blake2s_compress() 251 b = rotr32(b ^ c, 7); \ in blake2s_compress()
|
D | blake2-impl.h | 128 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
|
/third_party/openssl/crypto/aria/ |
D | aria.c | 33 #define rotr32(v, r) (((uint32_t)(v) >> (r)) | ((uint32_t)(v) << (32 - r))) macro 419 (T2) = rotr32(T2, 16); \ 467 (TMP2) = rotr32((TMP), 8); \ 468 (Y) = (TMP2) ^ rotr32((TMP) ^ (TMP2), 16); \
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | Thumb2InstrInfo.cpp | 341 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt); in emitT2RegPlusImmediate() 546 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt); in rewriteT2FrameIndex()
|
D | ARMBaseInstrInfo.cpp | 2375 unsigned ThisVal = NumBytes & ARM_AM::rotr32(0xFF, RotAmt); in emitARMRegPlusImmediate() 2556 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xFF, RotAmt); in rewriteARMFrameIndex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/AsmParser/ |
D | ARMAsmParser.cpp | 8320 ARM_AM::rotr32(Enc & 0xFF, (Enc & 0xF00) >> 7))); in processInstruction()
|