Searched defs:rol (Results 1 - 5 of 5) sorted by relevance
| /osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/ |
| H A D | bithelp.h | 29 rol( u32 x, int n) function 37 #define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) ) macro
|
| H A D | cast5.c | 336 rol(int n, u32 x) function 344 #define rol(n,x) ( ((x) << (n)) | ((x) >> (32-(n))) ) macro 347 #define F1(D,m,r) ( (I = ((m) + (D))), (I=rol((r),I)), \ 349 #define F2(D,m,r) ( (I = ((m) ^ (D))), (I=rol((r),I)), \ 351 #define F3(D,m,r) ( (I = ((m) - (D))), (I=rol((r),I)), \
|
| /osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/ |
| H A D | bithelp.h | 32 rol( u32 x, int n) function 40 #define rol(x,n) ( ((x) << (n)) | ((x) >> (32-(n))) ) macro
|
| H A D | cast5.c | 336 rol(int n, u32 x) function 344 #define rol(n,x) ( ((x) << (n)) | ((x) >> (32-(n))) ) macro 347 #define F1(D,m,r) ( (I = ((m) + (D))), (I=rol((r),I)), \ 349 #define F2(D,m,r) ( (I = ((m) ^ (D))), (I=rol((r),I)), \ 351 #define F3(D,m,r) ( (I = ((m) - (D))), (I=rol((r),I)), \
|
| /osnet-11/usr/src/lib/libsum/common/ |
| H A D | sum-sha1.c | 55 #define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits)))) macro 63 (block->l[i] = (rol(block->l[i], 24) & 0xFF00FF00) \ 64 | (rol(block->l[i], 8) & 0x00FF00FF)) 69 (block->l[i & 15] = rol(block->l[(i + 13) & 15] \ 78 z += ((w & (x ^ y)) ^ y) + blk0(i) + 0x5A827999 + rol(v, 5); \ 79 w = rol(w, 30); 81 z += ((w & (x ^ y)) ^ y) + blk(i) + 0x5A827999 + rol(v, 5); \ 82 w = rol(w, 30); 84 z += (w ^ x ^ y) + blk(i) + 0x6ED9EBA1 + rol(v, 5); \ 85 w = rol( [all...] |
Completed in 50 milliseconds