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

/freebsd-11-stable/sys/crypto/sha2/
H A Dsha256c.c105 #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-11-stable/crypto/openssh/
H A Dblocks.c41 #define ROTR(x,c) (((x) >> (c)) | ((x) << (64 - (c)))) macro
[all...]
/freebsd-11-stable/crypto/openssl/crypto/sha/
H A Dsha512.c323 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
353 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
358 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
373 # define ROTR(a,n) _rotr64((a),n) macro
403 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
[all...]
/freebsd-11-stable/sys/cddl/boot/zfs/
H A Dsha256.c49 #define ROTR(x, n) (((x) >> (n)) | ((x) << ((sizeof (x) * NBBY)-(n)))) macro
[all...]
/freebsd-11-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 112 milliseconds