Home
last modified time | relevance | path

Searched defs:ROTR (Results 1 – 10 of 10) sorted by relevance

/freebsd/crypto/openssl/crypto/sha/
H A Dsha512.c389 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
419 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
424 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
439 # define ROTR(a,n) _rotr64((a),n) macro
473 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c77 #define ROTR(x, n) ROTR32(x, n) macro
/freebsd/contrib/bearssl/src/hash/
H A Dsha2big.c30 #define ROTR(x, n) (((uint64_t)(x) << (64 - (n))) | ((uint64_t)(x) >> (n))) macro
H A Dsha2small.c30 #define ROTR(x, n) (((uint32_t)(x) << (32 - (n))) | ((uint32_t)(x) >> (n))) macro
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c93 #define ROTR(x, n) ROTR64(x, n) macro
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSHA256.cpp32 #define ROTR(x, n) (((x) >> n) | ((x) << (32 - (n)))) macro
[all...]
/freebsd/sys/crypto/sha2/
H A Dsha256c.c110 #define ROTR(x, n) ((x >> n) | (x << (32 - n))) macro
H A Dsha512c.c139 #define ROTR(x, n) ((x >> n) | (x << (64 - n))) macro
/freebsd/sys/cddl/boot/zfs/
H A Dsha256.c49 #define ROTR(x, n) (((x) >> (n)) | ((x) << ((sizeof (x) * NBBY)-(n)))) macro
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h737 ROTR, enumerator