Searched refs:rotr32 (Results 1 - 13 of 13) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMAddressingModes.h | 84 /// rotr32 - Rotate a 32-bit unsigned value right by a specified # bits. 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(25 in getSOImmTwoPartSecond() [all...] |
H A D | ARMInstPrinter.cpp | 1390 int32_t Rotated = ARM_AM::rotr32(Bits, Rot);
|
/third_party/node/deps/openssl/openssl/providers/implementations/digests/ |
H A 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()
|
H A D | blake2_impl.h | 110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
|
/third_party/openssl/providers/implementations/digests/ |
H A 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()
|
H A 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/ |
H A 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()
|
H A D | blake2-impl.h | 128 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | Thumb2InstrInfo.cpp | 341 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt); in emitT2RegPlusImmediate() 546 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt);
|
H A 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/node/deps/openssl/openssl/crypto/aria/ |
H A 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/openssl/crypto/aria/ |
H A 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/AsmParser/ |
H A D | ARMAsmParser.cpp | 8320 ARM_AM::rotr32(Enc & 0xFF, (Enc & 0xF00) >> 7))); in processInstruction()
|
Completed in 34 milliseconds