Searched refs:ROTR (Results 1 – 2 of 2) sorted by relevance
/external/openssl/crypto/0.9.9-dev/sha/ |
D | sha512-armv4.s | 106 @ Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) 160 @ Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39)) 203 @ sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) 218 @ sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6)) 248 @ Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) 302 @ Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39))
|
/external/openssl/crypto/sha/ |
D | sha512.c | 307 # define ROTR(a,n) ({ unsigned long ret; \ macro 337 # define ROTR(a,n) ({ unsigned long ret; \ macro 344 # define ROTR(a,n) _rotr64((a),n) macro 379 #ifndef ROTR 380 #define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro 383 #define Sigma0(x) (ROTR((x),28) ^ ROTR((x),34) ^ ROTR((x),39)) 384 #define Sigma1(x) (ROTR((x),14) ^ ROTR((x),18) ^ ROTR((x),41)) 385 #define sigma0(x) (ROTR((x),1) ^ ROTR((x),8) ^ ((x)>>7)) 386 #define sigma1(x) (ROTR((x),19) ^ ROTR((x),61) ^ ((x)>>6))
|