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

/freebsd-12-stable/crypto/openssl/crypto/cast/
H A Dcast_local.h117 # define ROTL(a,n) (_lrotl(a,n)) macro
119 # define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>((32-(n))&31))) macro
/freebsd-12-stable/contrib/bearssl/src/hash/
H A Dmd5.c32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
[all...]
H A Dsha1.c32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
[all...]
/freebsd-12-stable/crypto/openssl/crypto/siphash/
H A Dsiphash.c37 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/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 105 milliseconds