Searched refs:siphash_2u64 (Results 1 - 6 of 6) sorted by relevance

/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_siphash.h51 static inline u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) function
H A Dtest_tcp_custom_syncookie.c340 hash = siphash_2u64(first, second, &test_key_siphash);
476 hash = siphash_2u64(first, second, &test_key_siphash);
/linux-master/include/linux/
H A Dsiphash.h34 u64 siphash_2u64(const u64 a, const u64 b, const siphash_key_t *key);
51 return siphash_2u64((u64)b << 32 | a, (u64)d << 32 | c, key);
63 return siphash_2u64(le64_to_cpu(data[0]), le64_to_cpu(data[1]),
/linux-master/lib/
H A Dsiphash.c128 * siphash_2u64 - compute 64-bit siphash PRF value of 2 u64
133 u64 siphash_2u64(const u64 first, const u64 second, const siphash_key_t *key) function
146 EXPORT_SYMBOL(siphash_2u64); variable
H A Dsiphash_kunit.c141 chk(siphash_2u64(0x0706050403020100ULL, 0x0f0e0d0c0b0a0908ULL,
/linux-master/fs/nfsd/
H A Dnfssvc.c366 verf = siphash_2u64(now.tv_sec, now.tv_nsec, &nn->siphash_key);

Completed in 120 milliseconds