Searched defs:ROTATE_LEFT (Results 1 – 9 of 9) sorted by relevance
/titanic_51/usr/src/common/crypto/sha1/ |
H A D | sha1.c | 103 ROTATE_LEFT(uint64_t value, uint32_t n) in ROTATE_LEFT() function 113 #define ROTATE_LEFT(x, n) \ macro [all...] |
/titanic_51/usr/src/lib/gss_mechs/mech_krb5/crypto/md4/ |
H A D | md4.c | 67 #define ROTATE_LEFT(x, n) ((((x) << (n)) & 0xffffffff) | ((x) >> (32-(n)))) macro
|
/titanic_51/usr/src/grub/grub-0.97/stage2/ |
H A D | md5.c | 54 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x >> (32 - (n))))) macro
|
/titanic_51/usr/src/common/crypto/md4/ |
H A D | md4.c | 81 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
|
/titanic_51/usr/src/lib/gss_mechs/mech_dh/backend/crypto/ |
H A D | md5.c | 76 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
|
/titanic_51/usr/src/common/crypto/md5/ |
H A D | md5.c | 78 #define ROTATE_LEFT(x, n) \ macro
|
/titanic_51/usr/src/lib/libsum/common/ |
H A D | sum-md5.c | 173 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
|
/titanic_51/usr/src/contrib/ast/src/lib/libsum/ |
H A D | sum-md5.c | 154 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
|
/titanic_51/usr/src/lib/libsasl/lib/ |
H A D | md5.c | 106 #define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n)))) macro
|