HomeSort by relevance Sort by last modified time
    Searched refs:rol32 (Results 1 - 7 of 7) sorted by null

  /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/syslinux/gpxe/src/include/gpxe/
rotate.h 13 static inline uint32_t rol32 ( uint32_t data, unsigned int rotation ) { function
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_l4lb.c 26 static inline __u32 rol32(__u32 word, unsigned int shift) function
36 a -= c; a ^= rol32(c, 4); c += b; \
37 b -= a; b ^= rol32(a, 6); a += c; \
38 c -= b; c ^= rol32(b, 8); b += a; \
39 a -= c; a ^= rol32(c, 16); c += b; \
40 b -= a; b ^= rol32(a, 19); a += c; \
41 c -= b; c ^= rol32(b, 4); b += a; \
46 c ^= b; c -= rol32(b, 14); \
47 a ^= c; a -= rol32(c, 11); \
48 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_dir2.c 51 (name[3] << 0) ^ rol32(hash, 7 * 4);
59 rol32(hash, 7 * 3);
61 return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
63 return (name[0] << 0) ^ rol32(hash, 7 * 1);
xfs.h 486 * rol32 - rotate a 32-bit value left
490 static inline uint32_t rol32(uint32_t word, signed int shift) function

Completed in 345 milliseconds