Home
last modified time | relevance | path

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/
DARMAddressingModes.h86 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 …]
DARMInstPrinter.cpp1390 int32_t Rotated = ARM_AM::rotr32(Bits, Rot); in printModImmOperand()
/third_party/openssl/providers/implementations/digests/
Dblake2s_prov.c201 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()
Dblake2_impl.h110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32() function
/third_party/python/Modules/_blake2/impl/
Dblake2s-ref.c245 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()
Dblake2-impl.h128 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32() function
/third_party/openssl/crypto/aria/
Daria.c33 #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/
DThumb2InstrInfo.cpp341 ThisVal = ThisVal & ARM_AM::rotr32(0xff000000U, RotAmt); in emitT2RegPlusImmediate()
546 unsigned ThisImmVal = Offset & ARM_AM::rotr32(0xff000000U, RotAmt); in rewriteT2FrameIndex()
DARMBaseInstrInfo.cpp2375 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/
DARMAsmParser.cpp8320 ARM_AM::rotr32(Enc & 0xFF, (Enc & 0xF00) >> 7))); in processInstruction()