Searched defs:ROTR (Results 1 – 10 of 10) sorted by relevance
/freebsd/crypto/openssl/crypto/sha/ |
H A D | sha512.c | 389 # 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 D | hash_sha256_cp.c | 77 #define ROTR(x, n) ROTR32(x, n) macro
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | sha2big.c | 30 #define ROTR(x, n) (((uint64_t)(x) << (64 - (n))) | ((uint64_t)(x) >> (n))) macro
|
H A D | sha2small.c | 30 #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 D | hash_sha512_cp.c | 93 #define ROTR(x, n) ROTR64(x, n) macro
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SHA256.cpp | 32 #define ROTR(x, n) (((x) >> n) | ((x) << (32 - (n)))) macro [all...] |
/freebsd/sys/crypto/sha2/ |
H A D | sha256c.c | 110 #define ROTR(x, n) ((x >> n) | (x << (32 - n))) macro
|
H A D | sha512c.c | 139 #define ROTR(x, n) ((x >> n) | (x << (64 - n))) macro
|
/freebsd/sys/cddl/boot/zfs/ |
H A D | sha256.c | 49 #define ROTR(x, n) (((x) >> (n)) | ((x) << ((sizeof (x) * NBBY)-(n)))) macro
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 737 ROTR, enumerator
|