Searched defs:ROTL (Results 1 – 12 of 12) sorted by relevance
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/cast/ |
H A D | cast_local.h | 117 # define ROTL(a,n) (_lrotl(a,n)) macro 119 # define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>((32-(n))&31))) macro
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/cast/ |
H A D | cast_local.h | 117 # define ROTL(a,n) (_lrotl(a,n)) macro 119 # define ROTL(a,n) ((((a)<<(n))&0xffffffffL)|((a)>>((32-(n))&31))) macro
|
/netbsd-src/external/bsd/unbound/dist/util/ |
H A D | siphash.c | 38 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/netbsd-src/external/bsd/nsd/dist/ |
H A D | siphash.c | 26 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/siphash/ |
H A D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/siphash/ |
H A D | siphash.c | 37 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
|
/netbsd-src/external/gpl3/binutils/dist/gas/config/ |
H A D | rx-parse.h | 184 ROTL = 385, /* ROTL */ enumerator 353 #define ROTL 385 macro
|
H A D | rx-parse.c | 366 ROTL = 385, /* ROTL */ enumerator 535 #define ROTL 385 macro
|
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/ |
H A D | rx-parse.h | 184 ROTL = 385, /* ROTL */ enumerator 353 #define ROTL 385 macro
|
H A D | rx-parse.c | 366 ROTL = 385, /* ROTL */ enumerator 535 #define ROTL 385 macro
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | ISDOpcodes.h | 650 ROTL, enumerator
|
/netbsd-src/external/public-domain/sqlite/dist/ |
H A D | sqlite3.c | 33627 #define ROTL(a,b) (((a) << (b)) | ((a) >> (32 - (b)))) macro
|