Searched refs:ROTL (Results 1 – 3 of 3) sorted by relevance
/openssl-master/crypto/siphash/ |
A D | siphash.c | 32 #define ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro 53 v1 = ROTL(v1, 13); \ 55 v0 = ROTL(v0, 32); \ 57 v3 = ROTL(v3, 16); \ 60 v3 = ROTL(v3, 21); \ 63 v1 = ROTL(v1, 17); \ 65 v2 = ROTL(v2, 32); \
|
/openssl-master/crypto/cast/ |
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 135 t=ROTL(t,i); \ 152 w=ROTL(w,i); \ 172 t=ROTL(t,(key[n*2+1])); \
|
/openssl-master/crypto/bn/asm/ |
A D | ppc.pl | 132 $ROTL= "rotlwi"; # rotate left by immediate 156 $ROTL= "rotldi"; # rotate left by immediate 1727 $ROTL r3,r11,`$BITS/2` # rotate by $BITS/2 and store in r3
|
Completed in 8 milliseconds