Home
last modified time | relevance | path

Searched defs:ROTL (Results 1 – 7 of 7) sorted by relevance

/freebsd/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/contrib/unbound/util/
H A Dsiphash.c38 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/freebsd/crypto/openssl/crypto/siphash/
H A Dsiphash.c32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/freebsd/contrib/bearssl/src/hash/
H A Dmd5.c32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
H A Dsha1.c32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h708 ROTL, enumerator
/freebsd/contrib/sqlite3/
H A Dsqlite3.c33936 #define ROTL(a,b) (((a) << (b)) | ((a) >> (32 - (b)))) macro