Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/cast/
H A Dcast_local.h72 # define ROTL(a,n) (_lrotl(a,n)) macro
74 # 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/contrib/llvm-project/llvm/lib/Support/
H A DSipHash.cpp32 #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/crypto/krb5/src/lib/crypto/builtin/sha1/
H A Dshs.c39 #define ROTL(n,X) ((((X) << (n)) & 0xffffffff) | ((X) >> (32 - n))) macro
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h736 ROTL, enumerator
/freebsd/contrib/sqlite3/
H A Dsqlite3.c34506 #define ROTL(a,b) (((a) << (b)) | ((a) >> (32 - (b)))) macro