Searched defs:ROTL (Results 1 – 9 of 9) sorted by relevance
/freebsd/crypto/openssl/crypto/cast/ |
H A D | cast_local.h | 72 # 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 D | siphash.c | 38 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | SipHash.cpp | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/freebsd/crypto/openssl/crypto/siphash/ |
H A D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | md5.c | 32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
|
H A D | sha1.c | 32 #define ROTL(x, n) (((x) << (n)) | ((x) >> (32 - (n)))) macro
|
/freebsd/crypto/krb5/src/lib/crypto/builtin/sha1/ |
H A D | shs.c | 39 #define ROTL(n,X) ((((X) << (n)) & 0xffffffff) | ((X) >> (32 - n))) macro
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 736 ROTL, enumerator
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 34506 #define ROTL(a,b) (((a) << (b)) | ((a) >> (32 - (b)))) macro
|