Home
last modified time | relevance | path

Searched refs:rol32 (Results 1 – 5 of 5) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/bpf/
Dtest_l4lb.c26 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() 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 …]
Dtest_l4lb_noinline.c22 static __u32 rol32(__u32 word, unsigned int shift) in rol32() function
32 a -= c; a ^= rol32(c, 4); c += b; \
33 b -= a; b ^= rol32(a, 6); a += c; \
34 c -= b; c ^= rol32(b, 8); b += a; \
35 a -= c; a ^= rol32(c, 16); c += b; \
36 b -= a; b ^= rol32(a, 19); a += c; \
37 c -= b; c ^= rol32(b, 4); b += a; \
42 c ^= b; c -= rol32(b, 14); \
43 a ^= c; a -= rol32(c, 11); \
44 b ^= a; b -= rol32(a, 25); \
[all …]
Dtest_xdp_noinline.c25 static __u32 rol32(__u32 word, unsigned int shift) in rol32() function
35 a -= c; a ^= rol32(c, 4); c += b; \
36 b -= a; b ^= rol32(a, 6); a += c; \
37 c -= b; c ^= rol32(b, 8); b += a; \
38 a -= c; a ^= rol32(c, 16); c += b; \
39 b -= a; b ^= rol32(a, 19); a += c; \
40 c -= b; c ^= rol32(b, 4); b += a; \
45 c ^= b; c -= rol32(b, 14); \
46 a ^= c; a -= rol32(c, 11); \
47 b ^= a; b -= rol32(a, 25); \
[all …]
/external/llvm/lib/Support/
DSHA1.cpp50 static uint32_t rol32(uint32_t number, uint8_t bits) { in rol32() function
68 InternalState.Buffer[i & 15] = rol32(t, 1); in hashBlock()
79 t += rol32(a, 5) + e + InternalState.Buffer[i & 15]; in hashBlock()
82 c = rol32(b, 30); in hashBlock()
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/BPF/
Dremove_truncate_3.ll32 ; unsigned int rol32(unsigned int word, unsigned int shift)
92 define i32 @rol32(i32, i32) local_unnamed_addr #1 {