Home
last modified time | relevance | path

Searched defs:ROTATE (Results 1 – 13 of 13) sorted by relevance

/third_party/openssl/crypto/whrlpool/
Dwp_block.c112 # define ROTATE(a,n) _rotl64((a),n) macro
117 # define ROTATE(a,n) ({ u64 ret; asm ("rolq %1,%0" \ macro
127 # define ROTATE(a,n) ({ u64 ret; asm ("rorq %1,%0" \ macro
132 # define ROTATE(a,n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \ macro
135 # define ROTATE(a,n) ({ u64 ret; asm ("shrp %0=%1,%1,%2" \ macro
145 # define ROTATE(i,n) ((i)<<(n) ^ (i)>>(64-n)) macro
147 # define ROTATE(i,n) ((i)>>(n) ^ (i)<<(64-n)) macro
/third_party/openssl/crypto/des/
Ddes_local.h100 # define ROTATE(a,n) (_lrotr(a,n)) macro
102 # define ROTATE(a,n) (_rotr(a,n)) macro
105 # define ROTATE(a,n) ({ register unsigned int ret; \ macro
115 # define ROTATE(a,n) (((a)>>(n))+((a)<<(32-(n)))) macro
/third_party/openssl/crypto/aes/
Daes_x86core.c95 # define ROTATE(a,n) _lrotl(a,n) macro
97 # define ROTATE(a,n) _rotl(a,n) macro
100 # define ROTATE(a,n) ({ register unsigned int ret; \ macro
/third_party/openssl/crypto/chacha/
Dchacha_enc.c25 # define ROTATE(v, n) (((v) << (n)) | ((v) >> (32 - (n)))) macro
/third_party/python/Python/
Dpyhash.c356 # define ROTATE(x, b) _rotl64(x, b) macro
358 # define ROTATE(x, b) (uint64_t)( ((x) << (b)) | ( (x) >> (64 - (b))) ) macro
/third_party/openssl/ohos_lite/include/crypto/
Dmd32_common.h96 #define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n)))) macro
/third_party/openssl/include/crypto/
Dmd32_common.h96 #define ROTATE(a,n) (((a)<<(n))|(((a)&0xffffffff)>>(32-(n)))) macro
/third_party/ffmpeg/libavutil/
Dpca.c152 #define ROTATE(a,i,j,k,l) {\ in ff_pca() macro
Dripemd.c252 #define ROTATE(x,y) \ macro
/third_party/ffmpeg/libavcodec/
Dvc1.c594 #define ROTATE(DEF, L, N, C, A) do { \ in rotate_luts() macro
/third_party/flutter/skia/src/core/
DSkPictureFlat.h56 ROTATE, enumerator
/third_party/skia/src/core/
DSkPictureFlat.h56 ROTATE, enumerator
/third_party/libwebsockets/plugins/ssh-base/crypto/
Dchacha.c51 #define ROTATE(v,c) (ROTL32(v,c)) macro