Searched defs:ROTR (Results 1 - 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/bearssl/src/hash/
H A Dsha2big.c30 #define ROTR(x, n) (((uint64_t)(x) << (64 - (n))) | ((uint64_t)(x) >> (n))) macro
[all...]
H A Dsha2small.c30 #define ROTR(x, n) (((uint32_t)(x) << (32 - (n))) | ((uint32_t)(x) >> (n))) macro
[all...]
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha256/cp/
H A Dhash_sha256_cp.c77 #define ROTR(x, n) ROTR32(x, n) macro
[all...]
/freebsd-12-stable/sys/contrib/libsodium/src/libsodium/crypto_hash/sha512/cp/
H A Dhash_sha512_cp.c93 #define ROTR(x, n) ROTR64(x, n) macro
[all...]
/freebsd-12-stable/sys/crypto/sha2/
H A Dsha256c.c106 #define ROTR(x, n) ((x >> n) | (x << (32 - n))) macro
[all...]
H A Dsha512c.c132 #define ROTR(x, n) ((x >> n) | (x << (64 - n))) macro
[all...]
/freebsd-12-stable/sys/cddl/boot/zfs/
H A Dsha256.c49 #define ROTR(x, n) (((x) >> (n)) | ((x) << ((sizeof (x) * NBBY)-(n)))) macro
[all...]
/freebsd-12-stable/crypto/openssl/crypto/sha/
H A Dsha512.c402 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
432 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
437 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
452 # define ROTR(a,n) _rotr64((a),n) macro
486 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h471 SHL, SRA, SRL, ROTL, ROTR, FSHL, FSHR, enumerator in enum:llvm::ISD::NodeType

Completed in 184 milliseconds