/external/syslinux/gpxe/src/include/gpxe/ |
rotate.h | 13 static inline uint32_t rol32 ( uint32_t data, unsigned int rotation ) { function
|
/external/fio/ |
hash.h | 95 static inline uint32_t rol32(uint32_t word, uint32_t shift) function 103 a -= c; a ^= rol32(c, 4); c += b; \ 104 b -= a; b ^= rol32(a, 6); a += c; \ 105 c -= b; c ^= rol32(b, 8); b += a; \ 106 a -= c; a ^= rol32(c, 16); c += b; \ 107 b -= a; b ^= rol32(a, 19); a += c; \ 108 c -= b; c ^= rol32(b, 4); b += a; \ 114 c ^= b; c -= rol32(b, 14); \ 115 a ^= c; a -= rol32(c, 11); \ 116 b ^= a; b -= rol32(a, 25); [all...] |
/external/llvm/lib/Support/ |
SHA1.cpp | 50 static uint32_t rol32(uint32_t number, uint8_t bits) { function 68 InternalState.Buffer[i & 15] = rol32(t, 1); 79 t += rol32(a, 5) + e + InternalState.Buffer[i & 15]; 82 c = rol32(b, 30);
|
/external/syslinux/gpxe/src/net/80211/ |
wpa_tkip.c | 171 static inline u32 rol32 ( u32 v, int bits ) function 300 V[1] ^= rol32 ( V[0], 17 ); 304 V[1] ^= rol32 ( V[0], 3 );
|
/external/syslinux/core/fs/xfs/ |
xfs.h | 486 * rol32 - rotate a 32-bit value left 490 static inline uint32_t rol32(uint32_t word, signed int shift) function
|