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

/freebsd-10-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-10-stable/crypto/openssh/
H A Dblocks.c41 #define ROTR(x,c) (((x) >> (c)) | ((x) << (64 - (c)))) macro
[all...]
/freebsd-10-stable/crypto/openssl/crypto/sha/
H A Dsha512.c322 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
352 # define ROTR(a,n) ({ SHA_LONG64 ret; \ macro
360 # define ROTR(a,n) _rotr64((a),n) macro
390 # define ROTR(x,s) (((x)>>s) | (x)<<(64-s)) macro
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h306 SHL, SRA, SRL, ROTL, ROTR, enumerator in enum:llvm::ISD::NodeType

Completed in 146 milliseconds