Home
last modified time | relevance | path

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

/netbsd-src/crypto/external/bsd/openssl.old/dist/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
/netbsd-src/crypto/external/bsd/openssl/dist/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
/netbsd-src/external/bsd/unbound/dist/util/
H A Dsiphash.c38 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/netbsd-src/external/bsd/nsd/dist/
H A Dsiphash.c26 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/siphash/
H A Dsiphash.c32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/siphash/
H A Dsiphash.c37 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
/netbsd-src/external/gpl3/binutils/dist/gas/config/
H A Drx-parse.h184 ROTL = 385, /* ROTL */ enumerator
353 #define ROTL 385 macro
H A Drx-parse.c366 ROTL = 385, /* ROTL */ enumerator
535 #define ROTL 385 macro
/netbsd-src/external/gpl3/binutils.old/dist/gas/config/
H A Drx-parse.h184 ROTL = 385, /* ROTL */ enumerator
353 #define ROTL 385 macro
H A Drx-parse.c366 ROTL = 385, /* ROTL */ enumerator
535 #define ROTL 385 macro
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DISDOpcodes.h650 ROTL, enumerator
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c33627 #define ROTL(a,b) (((a) << (b)) | ((a) >> (32 - (b)))) macro